JBoss Tools SVN: r11721 - trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/actions.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2008-11-12 11:45:45 -0500 (Wed, 12 Nov 2008)
New Revision: 11721
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/actions/PagesCommandFactory.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-3167
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/actions/PagesCommandFactory.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/actions/PagesCommandFactory.java 2008-11-12 16:20:16 UTC (rev 11720)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/actions/PagesCommandFactory.java 2008-11-12 16:45:45 UTC (rev 11721)
@@ -11,8 +11,10 @@
package org.jboss.tools.seam.ui.pages.editor.actions;
import java.util.List;
+
import org.eclipse.gef.commands.Command;
import org.jboss.tools.seam.ui.pages.editor.commands.PagesCompoundCommand;
+import org.jboss.tools.seam.ui.pages.editor.ecore.pages.Link;
import org.jboss.tools.seam.ui.pages.editor.ecore.pages.PagesElement;
import org.jboss.tools.seam.ui.pages.editor.edit.LinkEditPart;
import org.jboss.tools.seam.ui.pages.editor.edit.PagesEditPart;
@@ -28,7 +30,7 @@
for (int i = 0; i < objects.size(); i++) {
source = null;
if(objects.get(i) instanceof PagesEditPart) source = ((PagesElement)((PagesEditPart)objects.get(i)).getModel()).getData();
- else if(objects.get(i) instanceof LinkEditPart) source = ((PagesElement)((LinkEditPart)objects.get(i)).getModel()).getData();
+ else if(objects.get(i) instanceof LinkEditPart) source = ((Link)((LinkEditPart)objects.get(i)).getModel()).getData();
if(source != null)compoundCmd.add(source);
}
return compoundCmd;
17 years, 5 months
JBoss Tools SVN: r11720 - trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/objecteditor.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 11:20:16 -0500 (Wed, 12 Nov 2008)
New Revision: 11720
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/objecteditor/XModelObjectEditor.java
Log:
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/objecteditor/XModelObjectEditor.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/objecteditor/XModelObjectEditor.java 2008-11-12 15:54:01 UTC (rev 11719)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/objecteditor/XModelObjectEditor.java 2008-11-12 16:20:16 UTC (rev 11720)
@@ -118,7 +118,11 @@
public String getValueAt(int r, int c) {
if(c == 0) {
String labelText = WizardKeys.getAttributeDisplayName(attributes[r], true);
- labelText = (labelText == null) ? attributes[r].getName() : labelText.toLowerCase();
+ if(labelText == null) {
+ labelText = attributes[r].getName();
+ }
+//use visual name as everywhere
+// labelText = (labelText == null) ? attributes[r].getName() : labelText.toLowerCase();
return labelText;
}
17 years, 5 months
JBoss Tools SVN: r11719 - trunk/common/plugins/org.jboss.tools.common.model/resources/help.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:54:01 -0500 (Wed, 12 Nov 2008)
New Revision: 11719
Modified:
trunk/common/plugins/org.jboss.tools.common.model/resources/help/keys-model-menu.properties
Log:
JBIDE-2969
Modified: trunk/common/plugins/org.jboss.tools.common.model/resources/help/keys-model-menu.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/resources/help/keys-model-menu.properties 2008-11-12 15:18:22 UTC (rev 11718)
+++ trunk/common/plugins/org.jboss.tools.common.model/resources/help/keys-model-menu.properties 2008-11-12 15:54:01 UTC (rev 11719)
@@ -1,21 +1,21 @@
CreateActions.menu=New
CreateFiles.menu=File
Edit.menu=Edit
-Rename=Rename
-RenameEclipse=Rename
-Copy=Copy
-Cut=Cut
-Paste=Paste
-Delete=Delete
-Move=Move
-Properties=Properties
-Save=Save
-Discard=Discard
-Refresh=Refresh
-Open=Open
-OpenWith=Open With...
-Autolayout=Autolayout
-Help=Help
+Rename.menu=Rename
+RenameEclipse.menu=Rename
+Copy.menu=Copy 2
+Cut.menu=Cut
+Paste.menu=Paste
+Delete.menu=Delete
+Move.menu=Move
+Properties.menu=Properties
+Save.menu=Save
+Discard.menu=Discard
+Refresh.menu=Refresh
+Open.menu=Open
+OpenWith.menu=Open With...
+Autolayout.menu=Autolayout
+Help.menu=Help
Model.Run.menu=Run Ant...
Model.Stop.menu=Stop
17 years, 5 months
JBoss Tools SVN: r11718 - in trunk/vpe/plugins/org.jboss.tools.vpe: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:18:22 -0500 (Wed, 12 Nov 2008)
New Revision: 11718
Added:
trunk/vpe/plugins/org.jboss.tools.vpe/resources/help/keys-vpe-lists.properties
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/plugin.xml
Log:
JBIDE-2969
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/plugin.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/plugin.xml 2008-11-12 15:17:45 UTC (rev 11717)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/plugin.xml 2008-11-12 15:18:22 UTC (rev 11718)
@@ -13,6 +13,7 @@
<keys path="help/keys-vpe.properties"/>
<keys path="help/keys-vpe-attrs.properties"/>
<keys path="help/keys-vpe-menu.properties"/>
+ <keys path="help/keys-vpe-lists.properties"/>
</extension>
<!-- extension
point="org.jboss.tools.vpe.templates">
Added: trunk/vpe/plugins/org.jboss.tools.vpe/resources/help/keys-vpe-lists.properties
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/resources/help/keys-vpe-lists.properties (rev 0)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/resources/help/keys-vpe-lists.properties 2008-11-12 15:18:22 UTC (rev 11718)
@@ -0,0 +1,7 @@
+VPE.lists.Page__Only_This_Page=Page\: Only This Page
+VPE.lists.Folder__Any_Page_at_the_Same_Folder=Folder\: Any Page at the Same Folder
+VPE.lists.Project__Any_Page_at_the_Same_Project=Project\: Any Page at the Same Project
+VPE.lists.Page=Page
+VPE.lists.Folder=Folder
+VPE.lists.Project=Project
+VPE.lists.Global__For_all_projects_in_workspace=Global\: For all projects in workspace
17 years, 5 months
JBoss Tools SVN: r11717 - in trunk/struts/plugins/org.jboss.tools.struts: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:17:45 -0500 (Wed, 12 Nov 2008)
New Revision: 11717
Added:
trunk/struts/plugins/org.jboss.tools.struts/resources/help/keys-struts-lists.properties
Modified:
trunk/struts/plugins/org.jboss.tools.struts/plugin.xml
Log:
JBIDE-2969
Modified: trunk/struts/plugins/org.jboss.tools.struts/plugin.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/plugin.xml 2008-11-12 15:17:19 UTC (rev 11716)
+++ trunk/struts/plugins/org.jboss.tools.struts/plugin.xml 2008-11-12 15:17:45 UTC (rev 11717)
@@ -18,6 +18,7 @@
<keys path="help/keys-struts.properties"/>
<keys path="help/keys-struts-attrs.properties"/>
<keys path="help/keys-struts-menu.properties"/>
+ <keys path="help/keys-struts-lists.properties"/>
</extension>
<extension point="org.jboss.tools.common.model.specialwizard">
<specialwizard class="org.jboss.tools.struts.webprj.model.helpers.sync.SortFileSystems" id="org.jboss.tools.struts.webprj.model.helpers.sync.SortFileSystems">
Added: trunk/struts/plugins/org.jboss.tools.struts/resources/help/keys-struts-lists.properties
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/resources/help/keys-struts-lists.properties (rev 0)
+++ trunk/struts/plugins/org.jboss.tools.struts/resources/help/keys-struts-lists.properties 2008-11-12 15:17:45 UTC (rev 11717)
@@ -0,0 +1,15 @@
+Struts.lists.request=request
+Struts.lists.session=session
+Struts.lists.action=action
+Struts.lists.forward=forward
+Struts.lists.page=page
+Struts.lists.Struts=Struts
+Struts.lists.HTML=HTML
+Struts.lists.arg0=arg0
+Struts.lists.arg1=arg1
+Struts.lists.arg2=arg2
+Struts.lists.arg3=arg3
+
+#miscellaneous
+Struts.lists.__EmptyChoice__=--EmptyChoice--
+Struts.lists.__WriteOnly__=--WriteOnly--
17 years, 5 months
JBoss Tools SVN: r11716 - in trunk/seam/plugins/org.jboss.tools.seam.xml: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:17:19 -0500 (Wed, 12 Nov 2008)
New Revision: 11716
Added:
trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam-lists.properties
Modified:
trunk/seam/plugins/org.jboss.tools.seam.xml/plugin.xml
Log:
JBIDE-2969
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml/plugin.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/plugin.xml 2008-11-12 15:16:36 UTC (rev 11715)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/plugin.xml 2008-11-12 15:17:19 UTC (rev 11716)
@@ -27,6 +27,7 @@
<keys path="help/keys-seam.properties"/>
<keys path="help/keys-seam-attrs.properties"/>
<keys path="help/keys-seam-menu.properties"/>
+ <keys path="help/keys-seam-lists.properties"/>
</extension>
<extension
Added: trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam-lists.properties
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam-lists.properties (rev 0)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/resources/help/keys-seam-lists.properties 2008-11-12 15:17:19 UTC (rev 11716)
@@ -0,0 +1,22 @@
+#component.scope
+Seam.lists.stateless=stateless
+Seam.lists.event=event
+Seam.lists.page=page
+Seam.lists.conversation=conversation
+Seam.lists.session=session
+Seam.lists.business_process=business_process
+Seam.lists.application=application
+Seam.lists.STATELESS=STATELESS
+Seam.lists.EVENT=EVENT
+Seam.lists.PAGE=PAGE
+Seam.lists.CONVERSATION=CONVERSATION
+Seam.lists.SESSION=SESSION
+Seam.lists.BUSINESS_PROCESS=BUSINESS_PROCESS
+Seam.lists.APPLICATION=APPLICATION
+Seam.lists.BUILT_IN=BUILT_IN
+Seam.lists.FRAMEWORK=FRAMEWORK
+Seam.lists.DEPLOYMENT=DEPLOYMENT
+Seam.lists.MOCK=MOCK
+Seam.lists.MANUAL=MANUAL
+Seam.lists.AUTO=AUTO
+Seam.lists.COMMIT=COMMIT
17 years, 5 months
JBoss Tools SVN: r11715 - in trunk/seam/plugins/org.jboss.tools.seam.pages.xml: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:16:36 -0500 (Wed, 12 Nov 2008)
New Revision: 11715
Added:
trunk/seam/plugins/org.jboss.tools.seam.pages.xml/resources/help/keys-seampages-lists.properties
Modified:
trunk/seam/plugins/org.jboss.tools.seam.pages.xml/plugin.xml
Log:
JBIDE-2969
Modified: trunk/seam/plugins/org.jboss.tools.seam.pages.xml/plugin.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.pages.xml/plugin.xml 2008-11-12 15:15:58 UTC (rev 11714)
+++ trunk/seam/plugins/org.jboss.tools.seam.pages.xml/plugin.xml 2008-11-12 15:16:36 UTC (rev 11715)
@@ -11,6 +11,7 @@
<keys path="help/keys-seam-pages.properties"/>
<keys path="help/keys-seampages-attrs.properties"/>
<keys path="help/keys-seampages-menu.properties"/>
+ <keys path="help/keys-seampages-lists.properties"/>
</extension>
<extension
Added: trunk/seam/plugins/org.jboss.tools.seam.pages.xml/resources/help/keys-seampages-lists.properties
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.pages.xml/resources/help/keys-seampages-lists.properties (rev 0)
+++ trunk/seam/plugins/org.jboss.tools.seam.pages.xml/resources/help/keys-seampages-lists.properties 2008-11-12 15:16:36 UTC (rev 11715)
@@ -0,0 +1,37 @@
+SeamPages.lists.render=render
+SeamPages.lists.redirect=redirect
+SeamPages.lists.enabled=enabled
+SeamPages.lists.disabled=disabled
+SeamPages.lists.manual=manual
+SeamPages.lists.auto=auto
+SeamPages.lists.commit=commit
+SeamPages.lists.MANUAL=MANUAL
+SeamPages.lists.AUTO=AUTO
+SeamPages.lists.COMMIT=COMMIT
+SeamPages.lists.info=info
+SeamPages.lists.warn=warn
+SeamPages.lists.error=error
+SeamPages.lists.fatal=fatal
+SeamPages.lists.debug=debug
+SeamPages.lists.trace=trace
+SeamPages.lists.INFO=INFO
+SeamPages.lists.WARN=WARN
+SeamPages.lists.ERROR=ERROR
+SeamPages.lists.FATAL=FATAL
+SeamPages.lists.DEBUG=DEBUG
+SeamPages.lists.TRACE=TRACE
+SeamPages.lists.stateless=stateless
+SeamPages.lists.event=event
+SeamPages.lists.page=page
+SeamPages.lists.conversation=conversation
+SeamPages.lists.session=session
+SeamPages.lists.business_process=business_process
+SeamPages.lists.application=application
+SeamPages.lists.STATELESS=STATELESS
+SeamPages.lists.EVENT=EVENT
+SeamPages.lists.PAGE=PAGE
+SeamPages.lists.CONVERSATION=CONVERSATION
+SeamPages.lists.SESSION=SESSION
+SeamPages.lists.BUSINESS_PROCESS=BUSINESS_PROCESS
+SeamPages.lists.APPLICATION=APPLICATION
+SeamPages.lists.Default_CONVERSATION_=Default(CONVERSATION)
17 years, 5 months
JBoss Tools SVN: r11714 - in trunk/jst/plugins/org.jboss.tools.jst.web.tiles: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:15:58 -0500 (Wed, 12 Nov 2008)
New Revision: 11714
Added:
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/resources/help/keys-tiles-lists.properties
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.xml
Log:
JBIDE-2969
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.xml 2008-11-12 15:15:23 UTC (rev 11713)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/plugin.xml 2008-11-12 15:15:58 UTC (rev 11714)
@@ -10,6 +10,7 @@
<keys path="help/keys-tiles.properties"/>
<keys path="help/keys-tiles-attrs.properties"/>
<keys path="help/keys-tiles-menu.properties"/>
+ <keys path="help/keys-tiles-lists.properties"/>
</extension>
<extension
Added: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/resources/help/keys-tiles-lists.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/resources/help/keys-tiles-lists.properties (rev 0)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/resources/help/keys-tiles-lists.properties 2008-11-12 15:15:58 UTC (rev 11714)
@@ -0,0 +1,5 @@
+#add.type
+Tiles.lists.string=string
+Tiles.lists.page=page
+Tiles.lists.template=template
+Tiles.lists.definition=definition
17 years, 5 months
JBoss Tools SVN: r11713 - in trunk/jst/plugins/org.jboss.tools.jst.web: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:15:23 -0500 (Wed, 12 Nov 2008)
New Revision: 11713
Added:
trunk/jst/plugins/org.jboss.tools.jst.web/resources/help/keys-web-lists.properties
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web/plugin.xml
Log:
JBIDE-2969
Modified: trunk/jst/plugins/org.jboss.tools.jst.web/plugin.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/plugin.xml 2008-11-12 15:14:48 UTC (rev 11712)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/plugin.xml 2008-11-12 15:15:23 UTC (rev 11713)
@@ -22,6 +22,7 @@
<keys path="help/keys-web.properties"/>
<keys path="help/keys-web-attrs.properties"/>
<keys path="help/keys-web-menu.properties"/>
+ <keys path="help/keys-web-lists.properties"/>
</extension>
<extension point="org.jboss.tools.common.model.specialwizard">
<specialwizard class="org.jboss.tools.jst.web.project.AddServletSupportWizard" id="org.jboss.tools.jst.web.project.AddServletSupportWizard">
Added: trunk/jst/plugins/org.jboss.tools.jst.web/resources/help/keys-web-lists.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/resources/help/keys-web-lists.properties (rev 0)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/resources/help/keys-web-lists.properties 2008-11-12 15:15:23 UTC (rev 11713)
@@ -0,0 +1,98 @@
+#tag.bodycontent
+Web.lists.tagdependent=tagdependent
+Web.lists.JSP=JSP
+Web.lists.empty=empty
+Web.lists.scriptless=scriptless
+
+#variable.scope
+Web.lists.NESTED=NESTED
+Web.lists.AT_BEGIN=AT_BEGIN
+Web.lists.AT_END=AT_END
+
+#ejb-local-ref.ejb-ref-type
+Web.lists.Entity=Entity
+Web.lists.Session=Session
+
+#env-entry.env-entry-type
+Web.lists.java.lang.Boolean=java.lang.Boolean
+Web.lists.java.lang.String=java.lang.String
+Web.lists.java.lang.Integer=java.lang.Integer
+Web.lists.java.lang.Double=java.lang.Double
+Web.lists.java.lang.Float=java.lang.Float
+
+#login-config.auth-method
+Web.lists.BASIC=BASIC
+Web.lists.DIGEST=DIGEST
+Web.lists.FORM=FORM
+Web.lists.CLIENT_CERT=CLIENT-CERT
+
+#mime-mapping.extension
+Web.lists.doc=doc
+Web.lists.gif=gif
+Web.lists.html=html
+Web.lists.txt=txt
+
+#mime-mapping.mime-type
+Web.lists.text_plain=text/plain
+Web.lists.text_richtext=text/richtext
+Web.lists.text_html=text/html
+Web.lists.audio_x_aiff=audio/x-aiff
+Web.lists.audio_basic=audio/basic
+Web.lists.audio_wav=audio/wav
+Web.lists.image_gif=image/gif
+Web.lists.image_jpeg=image/jpeg
+Web.lists.image_pjpeg=image/pjpeg
+Web.lists.image_tiff=image/tiff
+Web.lists.image_x_png=image/x-png
+Web.lists.image_x_xbitmap=image/x-xbitmap
+Web.lists.image_bmp=image/bmp
+Web.lists.image_x_jg=image/x-jg
+Web.lists.image_x_emf=image/x-emf
+Web.lists.image_x_wmf=image/x-wmf
+Web.lists.video_avi=video/avi
+Web.lists.video_mpeg=video/mpeg
+Web.lists.application_postscript=application/postscript
+Web.lists.application_base64=application/base64
+Web.lists.application_macbinhex40=application/macbinhex40
+Web.lists.application_pdf=application/pdf
+Web.lists.application_x_compressed=application/x-compressed
+Web.lists.application_x_zip_compressed=application/x-zip-compressed
+Web.lists.application_x_gzip_compressed=application/x-gzip-compressed
+Web.lists.application_java=application/java
+Web.lists.application_x_msdownload=application/x-msdownload
+
+#web-resource-collection.http-methods
+Web.lists.GET=GET
+Web.lists.POST=POST
+Web.lists.PUT=PUT
+Web.lists.DELETE=DELETE
+Web.lists.HEAD=HEAD
+Web.lists.OPTIONS=OPTIONS
+Web.lists.TRACE=TRACE
+Web.lists.Container=Container
+Web.lists.Application=Application
+Web.lists.Shareable=Shareable
+Web.lists.Unshareable=Unshareable
+
+#user-data-constraint.transport-guarantee
+Web.lists.NONE=NONE
+Web.lists.INTEGRAL=INTEGRAL
+Web.lists.CONFIDENTIAL=CONFIDENTIAL
+
+Web.lists.Exact_structure_of_war_file=Exact structure of war file
+Web.lists.Classic_Eclipse_project_structure=Classic Eclipse project structure
+
+Web.lists.none=none
+Web.lists.compile=compile
+Web.lists.create_jar=create jar
+
+#filter-mapping.dispatchers
+Web.lists.FORWARD=FORWARD
+Web.lists.INCLUDE=INCLUDE
+Web.lists.REQUEST=REQUEST
+Web.lists.ERROR=ERROR
+
+#message-destination-ref.message-destination-usage
+Web.lists.Consumes=Consumes
+Web.lists.Produces=Produces
+Web.lists.ConsumesProduces=ConsumesProduces
17 years, 5 months
JBoss Tools SVN: r11712 - in trunk/jsf/plugins/org.jboss.tools.jsf: resources/help and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2008-11-12 10:14:48 -0500 (Wed, 12 Nov 2008)
New Revision: 11712
Added:
trunk/jsf/plugins/org.jboss.tools.jsf/resources/help/keys-jsf-lists.properties
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
Log:
JBIDE-2969
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2008-11-12 15:14:19 UTC (rev 11711)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2008-11-12 15:14:48 UTC (rev 11712)
@@ -1568,6 +1568,7 @@
<keys path="help/keys-jsf.properties"/>
<keys path="help/keys-jsf-attrs.properties"/>
<keys path="help/keys-jsf-menu.properties"/>
+ <keys path="help/keys-jsf-lists.properties"/>
</extension>
<extension id="jsfnature" point="org.eclipse.core.resources.natures">
<runtime>
Added: trunk/jsf/plugins/org.jboss.tools.jsf/resources/help/keys-jsf-lists.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/resources/help/keys-jsf-lists.properties (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/resources/help/keys-jsf-lists.properties 2008-11-12 15:14:48 UTC (rev 11712)
@@ -0,0 +1,9 @@
+JSF.lists.request=request
+JSF.lists.session=session
+JSF.lists.application=application
+JSF.lists.none=none
+JSF.lists.properties=properties
+JSF.lists.list_entries=list-entries
+JSF.lists.map_entries=map-entries
+JSF.lists.value=value
+JSF.lists.null_value=null-value
17 years, 5 months