JBoss Tools SVN: r11342 - in trunk: seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2008-10-30 12:03:06 -0400 (Thu, 30 Oct 2008)
New Revision: 11342
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/editor/figures/ConnectionFigure.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ConnectionFigure.java
trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/editor/figures/ConnectionFigure.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-3065
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/editor/figures/ConnectionFigure.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/editor/figures/ConnectionFigure.java 2008-10-30 16:02:17 UTC (rev 11341)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/src/org/jboss/tools/jsf/ui/editor/figures/ConnectionFigure.java 2008-10-30 16:03:06 UTC (rev 11342)
@@ -17,7 +17,7 @@
import org.eclipse.draw2d.PolylineConnection;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.draw2d.geometry.PointList;
-
+import org.eclipse.swt.SWT;
import org.jboss.tools.jsf.ui.editor.edit.LinkEditPart;
import org.jboss.tools.jsf.ui.editor.model.ILink;
@@ -84,77 +84,91 @@
editPart.clear();
}
- PointList points;
- Point point;
- Point beg = new Point(0, 0), end = new Point(0, 0);
- Point corner = new Point(0, 0);
- boolean horiz;
-
protected void outlineShape(Graphics g) {
- points = getPoints();
- point = points.getPoint(0);
+ g.setLineCap(SWT.CAP_ROUND);
+
+ PointList points = getPoints();
+ Point point = points.getPoint(0);
+ Point beg = new Point();
+ Point end = new Point();
+ Point eCorner = new Point();
+ Point bCorner = new Point();
+ boolean horiz;
beg.x = point.x;
beg.y = point.y;
-
+
if (points.getFirstPoint().y == points.getLastPoint().y) {
super.outlineShape(g);
return;
}
-
+ if (Math.abs(points.getFirstPoint().y - points.getLastPoint().y) < 4) {
+ int delta = Math.abs(points.getFirstPoint().y - points.getLastPoint().y);
+ if(points.size() == 4){
+ Point point1 = points.getPoint(0);
+ Point point2 = points.getPoint(1);
+ Point point3 = points.getPoint(2);
+ Point point4 = points.getPoint(3);
+ if(point1.x < point4.x){
+ point2.x -= delta/2;
+ point3.x += delta/2;
+ }else{
+ point2.x += delta/2;
+ point3.x -= delta/2;
+ }
+ g.drawLine(point1, point2);
+ g.drawLine(point2, point3);
+ g.drawLine(point3, point4);
+ return;
+ }
+ }
+
for (int i = 1; i < points.size(); i++) {
point = points.getPoint(i);
end.x = point.x;
end.y = point.y;
-
+
if (beg.y == end.y)
horiz = true;
else
horiz = false;
-
+
+ eCorner.x = 0;
if (i != 1) {
if (horiz) {
- if (end.x > beg.x) {
- corner.x = beg.x + 1;
+ if (end.x > beg.x)
beg.x += 2;
- } else {
- corner.x = beg.x - 1;
+ else
beg.x -= 2;
- }
} else {
- if (end.y > beg.y) {
- corner.y = beg.y + 1;
+ if (end.y > beg.y)
beg.y += 2;
- } else {
- corner.y = beg.y - 1;
+ else
beg.y -= 2;
- }
}
+ eCorner.x = beg.x;
+ eCorner.y = beg.y;
}
- if (corner.x != 0)
- g.drawLine(corner, corner);
- corner.x = 0;
-
- if (i != points.size() - 1) {
+
+ if (bCorner.x != 0 && eCorner.x != 0)
+ g.drawLine(bCorner, eCorner);
+
+ bCorner.x = 0;
+ if (i != (points.size() - 1)) {
if (horiz) {
- if (end.x > beg.x) {
- corner.x = end.x - 1;
+ if (end.x > beg.x)
end.x -= 2;
-
- } else {
- corner.x = end.x + 1;
+ else
end.x += 2;
- }
} else {
- if (end.y > beg.y) {
- corner.y = end.y - 1;
+ if (end.y > beg.y)
end.y -= 2;
- } else {
- corner.y = end.y + 1;
+ else
end.y += 2;
- }
}
+ bCorner.x = end.x;
+ bCorner.y = end.y;
}
-
+
g.drawLine(beg, end);
point = points.getPoint(i);
beg.x = point.x;
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ConnectionFigure.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ConnectionFigure.java 2008-10-30 16:02:17 UTC (rev 11341)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ConnectionFigure.java 2008-10-30 16:03:06 UTC (rev 11342)
@@ -87,15 +87,8 @@
}
protected void outlineShape(Graphics g) {
- Page page=null;
- if(link != null && link.getFromElement() instanceof Page)
- page = (Page)link.getFromElement();
+ g.setLineCap(SWT.CAP_ROUND);
- if(page != null && !page.isConfirmed()){
- g.setLineDash(new int[]{3,3});
- g.setLineStyle(SWT.LINE_CUSTOM);
- }
-
PointList points = getPoints();
Point point = points.getPoint(0);
Point beg = new Point();
@@ -144,17 +137,15 @@
eCorner.x = 0;
if (i != 1) {
if (horiz) {
- if (end.x > beg.x) {
+ if (end.x > beg.x)
beg.x += 2;
- } else {
+ else
beg.x -= 2;
- }
} else {
- if (end.y > beg.y) {
+ if (end.y > beg.y)
beg.y += 2;
- } else {
+ else
beg.y -= 2;
- }
}
eCorner.x = beg.x;
eCorner.y = beg.y;
@@ -162,21 +153,19 @@
if (bCorner.x != 0 && eCorner.x != 0)
g.drawLine(bCorner, eCorner);
+
bCorner.x = 0;
-
- if (i != points.size() - 1) {
+ if (i != (points.size() - 1)) {
if (horiz) {
- if (end.x > beg.x) {
+ if (end.x > beg.x)
end.x -= 2;
- } else {
+ else
end.x += 2;
- }
} else {
- if (end.y > beg.y) {
+ if (end.y > beg.y)
end.y -= 2;
- } else {
+ else
end.y += 2;
- }
}
bCorner.x = end.x;
bCorner.y = end.y;
Modified: trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/editor/figures/ConnectionFigure.java
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/editor/figures/ConnectionFigure.java 2008-10-30 16:02:17 UTC (rev 11341)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/src/org/jboss/tools/struts/ui/editor/figures/ConnectionFigure.java 2008-10-30 16:03:06 UTC (rev 11342)
@@ -16,7 +16,7 @@
import org.eclipse.draw2d.PolylineConnection;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.draw2d.geometry.PointList;
-
+import org.eclipse.swt.SWT;
import org.jboss.tools.struts.ui.editor.edit.LinkEditPart;
import org.jboss.tools.struts.ui.editor.model.ILink;
@@ -89,73 +89,90 @@
public void clear(){
if(editPart != null)editPart.clear();
}
- PointList points;
- Point point;
- Point beg = new Point(0,0), end = new Point(0,0);
- Point corner = new Point(0,0);
- boolean horiz;
protected void outlineShape(Graphics g) {
- points = getPoints();
- point = points.getPoint(0);
+ g.setLineCap(SWT.CAP_ROUND);
+
+ PointList points = getPoints();
+ Point point = points.getPoint(0);
+ Point beg = new Point();
+ Point end = new Point();
+ Point eCorner = new Point();
+ Point bCorner = new Point();
+ boolean horiz;
beg.x = point.x;
beg.y = point.y;
-
-
- if(points.getFirstPoint().y == points.getLastPoint().y){
+
+ if (points.getFirstPoint().y == points.getLastPoint().y) {
super.outlineShape(g);
return;
}
-
- for(int i=1;i<points.size();i++){
+ if (Math.abs(points.getFirstPoint().y - points.getLastPoint().y) < 4) {
+ int delta = Math.abs(points.getFirstPoint().y - points.getLastPoint().y);
+ if(points.size() == 4){
+ Point point1 = points.getPoint(0);
+ Point point2 = points.getPoint(1);
+ Point point3 = points.getPoint(2);
+ Point point4 = points.getPoint(3);
+ if(point1.x < point4.x){
+ point2.x -= delta/2;
+ point3.x += delta/2;
+ }else{
+ point2.x += delta/2;
+ point3.x -= delta/2;
+ }
+ g.drawLine(point1, point2);
+ g.drawLine(point2, point3);
+ g.drawLine(point3, point4);
+ return;
+ }
+ }
+
+ for (int i = 1; i < points.size(); i++) {
point = points.getPoint(i);
end.x = point.x;
end.y = point.y;
-
- if(beg.y == end.y)horiz = true;
- else horiz = false;
-
- if(i != 1){
- if(horiz){
- if(end.x > beg.x){
- corner.x = beg.x+1;
- beg.x+=2;
- }else{
- corner.x = beg.x-1;
- beg.x-=2;
- }
- }else{
- if(end.y > beg.y){
- corner.y = beg.y+1;
- beg.y+=2;
- }else{
- corner.y = beg.y-1;
- beg.y-=2;
- }
+
+ if (beg.y == end.y)
+ horiz = true;
+ else
+ horiz = false;
+
+ eCorner.x = 0;
+ if (i != 1) {
+ if (horiz) {
+ if (end.x > beg.x)
+ beg.x += 2;
+ else
+ beg.x -= 2;
+ } else {
+ if (end.y > beg.y)
+ beg.y += 2;
+ else
+ beg.y -= 2;
}
+ eCorner.x = beg.x;
+ eCorner.y = beg.y;
}
- if(corner.x != 0)g.drawLine(corner, corner);
- corner.x = 0;
- if(i != points.size()-1){
- if(horiz){
- if(end.x > beg.x){
- corner.x = end.x-1;
- end.x-=2;
-
- }else{
- corner.x = end.x+1;
- end.x+=2;
- }
- }else{
- if(end.y > beg.y){
- corner.y = end.y-1;
- end.y-=2;
- }else{
- corner.y = end.y+1;
- end.y+=2;
- }
+ if (bCorner.x != 0 && eCorner.x != 0)
+ g.drawLine(bCorner, eCorner);
+
+ bCorner.x = 0;
+ if (i != (points.size() - 1)) {
+ if (horiz) {
+ if (end.x > beg.x)
+ end.x -= 2;
+ else
+ end.x += 2;
+ } else {
+ if (end.y > beg.y)
+ end.y -= 2;
+ else
+ end.y += 2;
}
+ bCorner.x = end.x;
+ bCorner.y = end.y;
}
g.drawLine(beg, end);
16 years, 2 months
JBoss Tools SVN: r11341 - in branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide: en and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-10-30 12:02:17 -0400 (Thu, 30 Oct 2008)
New Revision: 11341
Added:
branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/en/master_output.xml
Modified:
branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/pom.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-463
markers for new and updated are added
Added: branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/en/master_output.xml
===================================================================
--- branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/en/master_output.xml (rev 0)
+++ branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/en/master_output.xml 2008-10-30 16:02:17 UTC (rev 11341)
@@ -0,0 +1,445 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+"http://www.docbook.org/xml/4.3/docbookx.dtd"
+
+[<!ENTITY introduction SYSTEM "modules/introduction.xml">
+<!ENTITY esb_support SYSTEM "modules/esb_support.xml">
+<!ENTITY esb_editor SYSTEM "modules/esb_editor.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 xmlns:diffmk="http://diffmk.sf.net/ns/diff">
+
+ <bookinfo>
+ <title>ESB Tools 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>
+
+ <pubdate>April 2008</pubdate>
+ <copyright>
+ <year>2007</year>
+ <year>2008</year>
+ <holder>JBoss, a division of Red Hat Inc.</holder>
+ </copyright>
+ <releaseinfo><diffmk:wrapper diffmk:change="changed">
+ Version: 3.0.0.beta1
+ </diffmk:wrapper></releaseinfo>
+
+<abstract diffmk:change="added">
+ <title diffmk:change="added"></title>
+ <para diffmk:change="added">
+ <ulink diffmk:change="added" url="http://download.jboss.org/jbosstools/nightly-docs/en/esb_ref_guide/pdf/ES..."><diffmk:wrapper diffmk:change="added">PDF version</diffmk:wrapper></ulink>
+ </para>
+</abstract>
+
+</bookinfo>
+ <toc></toc>
+
+
+<chapter id="introduction" xml:base="file:///home/ochikvina/WORK/for_compare/trunk/esb/docs/esb_ref_guide/en/modules/introduction.xml">
+ <?dbhtml filename="introduction.html"?>
+
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss Developer Studio</keyword>
+ <keyword>Eclipse</keyword>
+ <keyword>Java</keyword>
+ <keyword>JBoss</keyword>
+ <keyword>JBoss Tools</keyword>
+ <keyword>JBDS</keyword>
+ <keyword>ESB</keyword>
+ </keywordset>
+ </chapterinfo>
+
+ <title>Introduction</title>
+
+ <section>
+
+ <title>What is ESB?</title>
+
+ <para><diffmk:wrapper diffmk:change="changed">ESB (Enterprise Service Bus) - an abstraction layer on top of an implementation of an
+ enterprise messaging system that provides the features with which Service Oriented
+ Architectures may be implemented.</diffmk:wrapper></para>
+ <para><diffmk:wrapper diffmk:change="changed">If you want to develop applications using ESB technology JBoss ESB also meet your
+ needs. The JBoss Tools provide ESB editor and all necessary wizards for creating ESB
+ file.</diffmk:wrapper></para>
+ <para><diffmk:wrapper diffmk:change="changed">In this guide we provide you with the information on ESB Editor which allows you to
+ develop ESB file much faster and with far fewer errors so sparing your time.</diffmk:wrapper></para>
+
+ </section>
+
+ <section>
+ <title>Other relevant resources on the topic</title>
+
+ <para>You can find a set of benefits and other extra information on:</para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <ulink url="http://www.jboss.org/jbossesb">JBoss ESB</ulink>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <ulink url="http://wiki.jboss.org/wiki/JBossESB">JBoss Wiki</ulink>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <ulink url="http://www.jboss.org/jbossesb/docs/index.html"><diffmk:wrapper diffmk:change="changed">JBoss ESB
+ Documentation Library</diffmk:wrapper></ulink>
+ </para>
+ </listitem>
+ </itemizedlist>
+
+ <para><diffmk:wrapper diffmk:change="added">The latest </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">JBoss Tools/JBoss Developer Studio</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> documentation
+ builds are available </diffmk:wrapper><ulink url="http://download.jboss.org/jbosstools/nightly-docs/">here</ulink>.</para>
+
+ </section>
+</chapter>
+
+
+<chapter id="esb_support" xml:base="file:///home/ochikvina/WORK/for_compare/trunk/esb/docs/esb_ref_guide/en/modules/esb_support.xml">
+ <?dbhtml filename="esb_support.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss Developer Studio</keyword>
+ <keyword>Eclipse</keyword>
+ <keyword>ESB</keyword>
+ <keyword>Java</keyword>
+ <keyword>JBoss</keyword>
+ </keywordset>
+ </chapterinfo>
+
+ <title>ESB Support</title>
+
+ <para><diffmk:wrapper diffmk:change="added">In this section we will focus on all concepts that </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">JBoss Tools</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">
+ integrates for working with JBoss ESB.</diffmk:wrapper></para>
+
+ <section>
+ <title><diffmk:wrapper diffmk:change="changed">ESB Tools Installation</diffmk:wrapper></title>
+
+ <para><diffmk:wrapper diffmk:change="changed">This chapter will provide you with the information on how to install
+ JBoss ESB plugin into Eclipse.</diffmk:wrapper></para>
+
+ <para><diffmk:wrapper diffmk:change="changed">ESB Tools come as one module of JBoss Tools project. Since ESB Tools have a
+ dependence on other JBoss Tools modules we recommend you to install a bundle
+ of all </diffmk:wrapper><ulink url="http://labs.jboss.com/tools/download/index.html"><diffmk:wrapper diffmk:change="changed">JBoss
+ Tools plug-ins</diffmk:wrapper></ulink><diffmk:wrapper diffmk:change="changed"> installation instruction on which you can find on
+ JBoss Wiki in </diffmk:wrapper><ulink url="http://labs.jboss.com/wiki/InstallingJBossTools">InstallingJBossTools</ulink> section.</para>
+ </section>
+
+ <section>
+ <title>Creating a ESB File</title>
+ <para><diffmk:wrapper diffmk:change="changed">In this chapter we suggest a step-by-step walk-through of creating your own
+ simple file. Let's try to organize a new ESB file.</diffmk:wrapper></para>
+
+ <para>We will show you how to use the Creation wizard for creating a new ESB file.</para>
+
+ <para>At first you should open any project. Select <emphasis>
+ <property moreinfo="none">File >New > Other...</property>
+ </emphasis><diffmk:wrapper diffmk:change="changed"> in the main menu bar or context menu for selected project and
+ then </diffmk:wrapper><emphasis>
+ <property moreinfo="none">ESB > ESB File</property>
+ </emphasis> in the New dialog:</para>
+
+ <figure float="0">
+ <title>New Dialog</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_support/01_create_esb.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para> Clicking <emphasis>
+ <property moreinfo="none">Next</property>
+ </emphasis><diffmk:wrapper diffmk:change="changed"> brings us to the wizard page where it's necessary to
+ specify the folder, name and version for the file. We choose, for example, </diffmk:wrapper><emphasis>
+ <property moreinfo="none">jboss-esb.xml</property>
+ </emphasis><diffmk:wrapper diffmk:change="changed"> as the name and accept the selected projects folder and default
+ version.</diffmk:wrapper></para>
+ <figure float="0">
+ <title>Folder, Name and Version</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_support/02_create_esb.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para><diffmk:wrapper diffmk:change="changed">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 </diffmk:wrapper><emphasis>
+ <property moreinfo="none">Browse...</property>
+ </emphasis> button to set needed folder or simply type it.</para>
+
+ <para>Clicking on <emphasis>
+ <property moreinfo="none">Finish</property>
+ </emphasis><diffmk:wrapper diffmk:change="changed"> results in the file being generated. The wizard creates one xml
+ file.</diffmk:wrapper></para>
+
+ </section>
+
+</chapter>
+
+
+<chapter id="esb_editor" xml:base="file:///home/ochikvina/WORK/for_compare/trunk/esb/docs/esb_ref_guide/en/modules/esb_editor.xml" xreflabel="esb_editor">
+ <?dbhtml filename="esbEditor.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss ESB</keyword>
+ <keyword>Editor</keyword>
+ <keyword>ESB</keyword>
+ </keywordset>
+ </chapterinfo>
+
+ <title>ESB Editor</title>
+
+ <para><diffmk:wrapper diffmk:change="added"> ESB editor has lots of useful features, they are described in details in this chapter. In
+ addition you'll get to know with how </diffmk:wrapper><property diffmk:change="added" moreinfo="none">ESB Editor</property><diffmk:wrapper diffmk:change="added"> uses combined
+ visual and source editing of esb files.</diffmk:wrapper></para>
+
+
+
+ <title>ESB File Editor</title>
+ <para><property moreinfo="none">ESB File Editor</property><diffmk:wrapper diffmk:change="changed"> is a powerful and customizable tool. ESB File
+ Editor allows developing an application using ESB technology.</diffmk:wrapper></para>
+
+ <para>ESB file editor has two tabs: Tree and Source.</para>
+
+ <para><diffmk:wrapper diffmk:change="changed">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:</diffmk:wrapper></para>
+ <figure float="0">
+ <title>Tree View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/01_esb_tree_view.png" scale="90"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para><diffmk:wrapper diffmk:change="added">You can easily switch from Tree to Source by selecting the Source tab at the bottom of
+ the editor and work in </diffmk:wrapper><property diffmk:change="added" moreinfo="none">Source view</property>.</para>
+
+ <figure float="0" id="sourceView">
+ <title>Source View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/02_esb_source_view.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para><diffmk:wrapper diffmk:change="added">The Source view for the editor displays a text content of the ESB file. It is always
+ synchronized with </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Tree view</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">, so any changes made in one of the
+ views will immediately appear in the other.</diffmk:wrapper></para>
+
+ <para>No matter what view you select, you get full integration with <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Outline
+ view</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">. 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 </diffmk:wrapper><property diffmk:change="added" moreinfo="none">Outline view</property><diffmk:wrapper diffmk:change="added"> and it will jump to the same place in
+ the Source editor, so you can navigate through the source code with Outline view.</diffmk:wrapper></para>
+ <figure float="0">
+ <title>Outline View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/03_esb_outline_view.png" scale="70"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para><diffmk:wrapper diffmk:change="changed">Adding, editing or deleting of some artifacts operations are available right in the
+ </diffmk:wrapper><property moreinfo="none"><diffmk:wrapper diffmk:change="changed">Tree view</diffmk:wrapper></property><diffmk:wrapper diffmk:change="changed"> . Right-click any node and select one of the
+ available actions in the context menu. For example, you can easily add a new Provider:</diffmk:wrapper></para>
+ <para></para>
+ <figure float="0">
+ <title><diffmk:wrapper diffmk:change="changed">Adding New Provider</diffmk:wrapper></title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/04_esb_add_provider.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para><diffmk:wrapper diffmk:change="changed">You can easily add a new Service too:</diffmk:wrapper></para>
+ <figure float="0">
+ <title><diffmk:wrapper diffmk:change="changed">Adding New Service</diffmk:wrapper></title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/05_esb_add_service.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>The same way you can create a listener for service and other elements of ESB:</para>
+ <figure float="0">
+ <title><diffmk:wrapper diffmk:change="changed">Adding New Listener for Service</diffmk:wrapper></title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/06_esb_add_listener.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>The same actions can be done in the right part of <property moreinfo="none"><diffmk:wrapper diffmk:change="changed">Tree view</diffmk:wrapper></property><diffmk:wrapper diffmk:change="changed"> tab
+ (Form editor) using </diffmk:wrapper><property moreinfo="none">Add</property>, <property moreinfo="none">Edit</property><diffmk:wrapper diffmk:change="changed"> and
+ </diffmk:wrapper><property moreinfo="none">Remove</property> buttons.</para>
+
+
+ <para diffmk:change="added"><diffmk:wrapper diffmk:change="added">In order to add a new generic Action to your ESB XML file you should select the
+ Actions node under the Services, then right-click and choose </diffmk:wrapper><emphasis diffmk:change="added">
+ <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">New > Generic Action</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">. </diffmk:wrapper></emphasis></para>
+
+ <figure diffmk:change="added" float="0">
+ <title diffmk:change="added"><diffmk:wrapper diffmk:change="added">Adding New Action in the Tree View</diffmk:wrapper></title>
+ <mediaobject diffmk:change="added">
+ <imageobject diffmk:change="added">
+ <imagedata diffmk:change="added" fileref="images/esb_editor/11_esb_editor.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para diffmk:change="added"><diffmk:wrapper diffmk:change="added">Or instead make use of </diffmk:wrapper><emphasis diffmk:change="added">
+ <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Add...</diffmk:wrapper></property>
+ </emphasis><diffmk:wrapper diffmk:change="added"> button in the </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Form editor</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> on the left.</diffmk:wrapper></para>
+ <figure diffmk:change="added" float="0">
+ <title diffmk:change="added"><diffmk:wrapper diffmk:change="added">Adding New Action in the Form Editor</diffmk:wrapper></title>
+ <mediaobject diffmk:change="added">
+ <imageobject diffmk:change="added">
+ <imagedata diffmk:change="added" fileref="images/esb_editor/12_esb_editor.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para diffmk:change="added"><diffmk:wrapper diffmk:change="added">As you can see on the bath figures above, the context menu will also prompt you to
+ insert one of the Actions that are supplied out-of-the-box with </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">JBoss
+ ESB</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">. After choosing one an appeared </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">New Action wizard</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added">
+ will ask you to fill out a name field and other fields specific for each Action
+ property. For example, for </diffmk:wrapper><emphasis diffmk:change="added">
+ <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Content Based Router</diffmk:wrapper></property>
+ </emphasis><diffmk:wrapper diffmk:change="added"> Action the wizard looks as follows:</diffmk:wrapper></para>
+
+ <figure diffmk:change="added" float="0">
+ <title diffmk:change="added"><diffmk:wrapper diffmk:change="added">New Action Wizard</diffmk:wrapper></title>
+ <mediaobject diffmk:change="added">
+ <imageobject diffmk:change="added">
+ <imagedata diffmk:change="added" fileref="images/esb_editor/13_esb_editor.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para diffmk:change="added"><diffmk:wrapper diffmk:change="added">After confirming creating the Action you can see it in the Tree under the </diffmk:wrapper><emphasis diffmk:change="added">
+ <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Actions</diffmk:wrapper></property>
+ </emphasis><diffmk:wrapper diffmk:change="added"> node and preview as well as edit its settings in the </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Form
+ editor</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> on the left.</diffmk:wrapper></para>
+
+ <figure diffmk:change="added" float="0">
+ <title diffmk:change="added"><diffmk:wrapper diffmk:change="added">Form Editor for Content Based Router</diffmk:wrapper></title>
+ <mediaobject diffmk:change="added">
+ <imageobject diffmk:change="added">
+ <imagedata diffmk:change="added" fileref="images/esb_editor/14_esb_editor.png"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para diffmk:change="added"><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">ESB editor</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> can recognize some specific objects. On the figure you
+ can see </diffmk:wrapper><emphasis diffmk:change="added"><diffmk:wrapper diffmk:change="added">org.jboss.soa.esb.actions.ContentBasedRouter</diffmk:wrapper></emphasis><diffmk:wrapper diffmk:change="added"> in the </diffmk:wrapper><emphasis diffmk:change="added">
+ <property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Class</diffmk:wrapper></property>
+ </emphasis><diffmk:wrapper diffmk:change="added"> section.</diffmk:wrapper></para>
+
+ <section id="esb_editors_features">
+
+ <title>ESB Editors Features</title>
+ <para><diffmk:wrapper diffmk:change="changed">JBoss ESB tooling has powerful editor features that help you easily make use of
+ content and code assist.</diffmk:wrapper></para>
+
+ <section id="ESBsyntaxvalidation84">
+
+ <title>ESB syntax validation</title>
+ <para><diffmk:wrapper diffmk:change="added">When working in </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">JBoss ESB editor</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> 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 </diffmk:wrapper><property diffmk:change="added" moreinfo="none"><diffmk:wrapper diffmk:change="added">Problems view</diffmk:wrapper></property><diffmk:wrapper diffmk:change="added"> below.</diffmk:wrapper></para>
+ </section>
+
+ <section id="ESBSupportXMLSchema">
+ <title>Support for XML Schema</title>
+
+ <para><diffmk:wrapper diffmk:change="changed">JBoss ESB Framework fully </diffmk:wrapper><link linkend="sourceView"><diffmk:wrapper diffmk:change="changed">supports XML files based on
+ schemas as well as DTDs</diffmk:wrapper></link>.</para>
+ </section>
+
+
+
+ <section id="ESBContentAssist">
+
+ <title>Content Assist for ESB XML file</title>
+
+ <para>When you work with any ESB XML file <property moreinfo="none">Content Assist</property><diffmk:wrapper diffmk:change="changed"> 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 </diffmk:wrapper><emphasis>
+ <property moreinfo="none">Ctrl-Space</property>
+ </emphasis> to see what is available.</para>
+
+ <para>Content Assist for ESB XML file:</para>
+ <figure float="0">
+ <title>Content Assist for ESB XML file</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/08_esb_features.png" scale="80"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Content Assist for attributes:</para>
+ <figure float="0">
+ <title>Content Assist for attributes:</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/09_esb_features.png" scale="80"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ </section>
+
+ <section id="FullControlOverSourceFiles-SynchronizedSourcAndVisualEditing">
+
+ <title>Synchronized Source and Visual Editing</title>
+
+ <para><diffmk:wrapper diffmk:change="changed">ESB file can be edited in either source or extra visual modes at the same time.</diffmk:wrapper></para>
+
+ <para><diffmk:wrapper diffmk:change="changed">JBoss Tools provide you two different editors to speed your development: a
+ graphical view (</diffmk:wrapper><property moreinfo="none">Tree</property><diffmk:wrapper diffmk:change="changed">) and source (</diffmk:wrapper><property moreinfo="none">Source</property><diffmk:wrapper diffmk:change="changed">).
+ 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.</diffmk:wrapper></para>
+
+ <figure float="0">
+ <title>Two Views are Synchronized</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/10_esb_features.png" scale="70"></imagedata>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>The last chapter covers capabilities on how you can use ESB editor.</para>
+
+ <para><diffmk:wrapper diffmk:change="changed">In summary, this reference supplies you with all necessary information on the
+ functionality that JBoss ESB Editor provides for work with JBoss ESB.</diffmk:wrapper></para>
+ </section>
+ </section>
+</chapter>
+
+
+</book>
Modified: branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/pom.xml
===================================================================
--- branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/pom.xml 2008-10-30 15:27:28 UTC (rev 11340)
+++ branches/jbosstools-3.0.0.Beta1/esb/docs/esb_ref_guide/pom.xml 2008-10-30 16:02:17 UTC (rev 11341)
@@ -33,7 +33,7 @@
</dependencies>
<configuration>
- <sourceDocumentName>master.xml</sourceDocumentName>
+ <sourceDocumentName>master_output.xml</sourceDocumentName>
<sourceDirectory>${pom.basedir}/en</sourceDirectory>
<imageResource>
<directory>${pom.basedir}/en</directory>
16 years, 2 months
JBoss Tools SVN: r11340 - trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2008-10-30 11:27:28 -0400 (Thu, 30 Oct 2008)
New Revision: 11340
Modified:
trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java
Log:
https://jira.jboss.org/jira/browse/JBDS-461
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java 2008-10-30 14:11:38 UTC (rev 11339)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/src/org/jboss/tools/jst/firstrun/JBossASAdapterInitializer.java 2008-10-30 15:27:28 UTC (rev 11340)
@@ -117,8 +117,8 @@
return;
}
JstFirstRunPlugin.getDefault().getPreferenceStore().setValue(FIRST_START_PREFERENCE_NAME, false);
-
- File serversFile = new File(SERVERS_FILE);
+ String pluginLocation = FileLocator.resolve(JstFirstRunPlugin.getDefault().getBundle().getEntry("/")).getPath();
+ File serversFile = new File(pluginLocation, SERVERS_FILE);
if(serversFile.exists()){
String str = FileUtil.readFile(serversFile);
int position = 0;
@@ -177,7 +177,7 @@
}
String jbossASLocation = null;
- String pluginLocation = FileLocator.resolve(JstFirstRunPlugin.getDefault().getBundle().getEntry("/")).getPath();
+
File jbossASDir = new File(pluginLocation, JBOSS_AS_HOME);
if (jbossASDir.isDirectory()) {
jbossASLocation = jbossASDir.getAbsolutePath();
16 years, 2 months
JBoss Tools SVN: r11339 - in trunk/documentation/whatsnew: as and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2008-10-30 10:11:38 -0400 (Thu, 30 Oct 2008)
New Revision: 11339
Added:
trunk/documentation/whatsnew/examples/
trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html
trunk/documentation/whatsnew/images/example_wizard_select.png
trunk/documentation/whatsnew/images/project_example_wizard.png
trunk/documentation/whatsnew/images/serveres_beta_view.png
Modified:
trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html
trunk/documentation/whatsnew/index.html
Log:
added description about project examples and beta server view
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html 2008-10-30 14:01:13 UTC (rev 11338)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html 2008-10-30 14:11:38 UTC (rev 11339)
@@ -15,6 +15,33 @@
<tr>
<td colspan="2">
<hr>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>New Servers View (Beta)</b></td>
+ <td valign="top">
+ <p>We have always had an extra servers view since Eclipse WTP's
+ server view does not provide any form of extension points to add
+ server specific info.</p>
+
+ <p>In this release we have added a beta/preview of a Servers
+view that is built on Common Navigator Framework allowing extensions
+and is using label decorators instead of extra columns to make the UI
+more compact without loosing the vital information.</p>
+
+ <p>We have suggested to WTP that they incorporate a view based
+on this. You can provide feedback on this
+at <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=247934">bugs.eclipse.org</a>
+and the related bugs.</p>
+
+ <p><img src="../images/serveres_beta_view.png"/></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr>
<h3>Servers</h3>
<hr>
</td>
@@ -31,6 +58,8 @@
+
+
</table>
</body>
Added: trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html (rev 0)
+++ trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html 2008-10-30 14:11:38 UTC (rev 11339)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css"/>
+<title>Examples 1.1.0.Beta1 What's New</title>
+</head>
+<body>
+<h1>Examples 1.1.0.Beta1 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> <a href="../hibernate/hibernate-news-3.2.1.beta1.html">Hibernate Tools News ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>General</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right">
+ <a name="itemnam2e" id="itemname2"></a><b>Project Examples</b>
+ </td>
+ <td width="70%" valign="top">
+ <p>We have added an experimental feature called Project Example wizard that is intended to allow users to download example projects from a remote site and have it working out of the box.</p>
+
+ <p><img src="../images/example_wizard_select.png"/></p>
+
+ <p>The wizard provides a categorized list of projects that can be downloaded and configured in JBoss Tools.</p>
+ <p><p><img src="../images/project_example_wizard.png"/></p></p>
+
+ <p>We are still experimenting with the projects thus some of them might need to be manually configured after download to set the right datasource, runtime etc.</p>
+ </td>
+ </tr>
+</table>
+
+</body>
+
+</html>
+
+
Added: trunk/documentation/whatsnew/images/example_wizard_select.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/example_wizard_select.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/images/project_example_wizard.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/project_example_wizard.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/images/serveres_beta_view.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/serveres_beta_view.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/whatsnew/index.html
===================================================================
--- trunk/documentation/whatsnew/index.html 2008-10-30 14:01:13 UTC (rev 11338)
+++ trunk/documentation/whatsnew/index.html 2008-10-30 14:11:38 UTC (rev 11339)
@@ -31,6 +31,7 @@
<p><a href="vpe/vpe-news-3.0.0.Beta1.html">Visual Page Editor</a></p>
<p><a href="esb/esb-news-1.1.0.Beta1.html">JBoss ESB Tools</a></p>
<p><a href="smooks/smooks-news-1.0.0.Beta1.html">Smooks Tools</a></p>
+ <p><a href="examples/examples-news-1.0.0.Beta1.html">Examples</a></p>
</td>
</tr>
16 years, 2 months
JBoss Tools SVN: r11338 - in branches/jbosstools-3.0.0.Beta1/jsf: tests/org.jboss.tools.jsf.vpe.jsf.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2008-10-30 10:01:13 -0400 (Thu, 30 Oct 2008)
New Revision: 11338
Modified:
branches/jbosstools-3.0.0.Beta1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/
branches/jbosstools-3.0.0.Beta1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/
Log:
svn ignore bin
Property changes on: branches/jbosstools-3.0.0.Beta1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces
___________________________________________________________________
Name: svn:ignore
+ bin
Property changes on: branches/jbosstools-3.0.0.Beta1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test
___________________________________________________________________
Name: svn:ignore
+ bin
16 years, 2 months
JBoss Tools SVN: r11337 - workspace/snjeza/seam-examples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2008-10-30 09:18:05 -0400 (Thu, 30 Oct 2008)
New Revision: 11337
Modified:
workspace/snjeza/seam-examples/booking.zip
Log:
JBIDE-3031 Project examples (Seam Booking) don't start on server.
Modified: workspace/snjeza/seam-examples/booking.zip
===================================================================
(Binary files differ)
16 years, 2 months
JBoss Tools SVN: r11336 - workspace/snjeza/seam-examples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2008-10-30 09:04:55 -0400 (Thu, 30 Oct 2008)
New Revision: 11336
Modified:
workspace/snjeza/seam-examples/booking-ejb.zip
Log:
JBIDE-3031 Project examples (Seam Booking) don't start on server.
Modified: workspace/snjeza/seam-examples/booking-ejb.zip
===================================================================
(Binary files differ)
16 years, 2 months
JBoss Tools SVN: r11335 - branches/jbosstools-3.0.0.Beta1/jbpm/plugins/org.jboss.tools.jbpm.convert.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2008-10-30 09:04:06 -0400 (Thu, 30 Oct 2008)
New Revision: 11335
Modified:
branches/jbosstools-3.0.0.Beta1/jbpm/plugins/org.jboss.tools.jbpm.convert/
Log:
svn ignore bin
Property changes on: branches/jbosstools-3.0.0.Beta1/jbpm/plugins/org.jboss.tools.jbpm.convert
___________________________________________________________________
Name: svn:ignore
+ bin
16 years, 2 months
JBoss Tools SVN: r11334 - branches/jbosstools-3.0.0.Beta1/examples/plugins/org.jboss.tools.project.examples.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2008-10-30 09:03:36 -0400 (Thu, 30 Oct 2008)
New Revision: 11334
Modified:
branches/jbosstools-3.0.0.Beta1/examples/plugins/org.jboss.tools.project.examples/
Log:
svn ignore bin
Property changes on: branches/jbosstools-3.0.0.Beta1/examples/plugins/org.jboss.tools.project.examples
___________________________________________________________________
Name: svn:ignore
+ bin
16 years, 2 months
JBoss Tools SVN: r11333 - in branches/jbosstools-3.0.0.Beta1/common/tests: org.jboss.tools.common.text.ext.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2008-10-30 09:02:54 -0400 (Thu, 30 Oct 2008)
New Revision: 11333
Modified:
branches/jbosstools-3.0.0.Beta1/common/tests/org.jboss.tools.common.el.core.test/
branches/jbosstools-3.0.0.Beta1/common/tests/org.jboss.tools.common.text.ext.test/
Log:
svn ignore bin
Property changes on: branches/jbosstools-3.0.0.Beta1/common/tests/org.jboss.tools.common.el.core.test
___________________________________________________________________
Name: svn:ignore
+ bin
Property changes on: branches/jbosstools-3.0.0.Beta1/common/tests/org.jboss.tools.common.text.ext.test
___________________________________________________________________
Name: svn:ignore
+ bin
16 years, 2 months