[JBoss JIRA] Created: (JBIDE-2183) Ctrl+shift+G binding causing warnings - can it be avoided ?
by Max Rydahl Andersen (JIRA)
Ctrl+shift+G binding causing warnings - can it be avoided ?
-----------------------------------------------------------
Key: JBIDE-2183
URL: http://jira.jboss.com/jira/browse/JBIDE-2183
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 2.1.0.CR1
Reporter: Max Rydahl Andersen
Fix For: 2.1.0.GA
in latest cr1 I get the following in the Error log at startup:
eclipse.buildId=1.1.0.CR1
java.version=1.6.0_04
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=da_DK
Command-line arguments: -os win32 -ws win32 -arch x86
Warning
Tue May 06 15:03:32 CEST 2008
Keybinding conflicts occurred. They may interfere with normal accelerator operation.
Warning
Tue May 06 15:03:32 CEST 2008
A conflict occurred for CTRL+SHIFT+G:
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months
[JBoss JIRA] Created: (JBIDE-6072) rich:panel do not render its surplus tags in VPE
by Denis Maliarevich (JIRA)
rich:panel do not render its surplus tags in VPE
------------------------------------------------
Key: JBIDE-6072
URL: https://jira.jboss.org/jira/browse/JBIDE-6072
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Visual Page Editor Templates
Affects Versions: 3.1.0.GA
Reporter: Denis Maliarevich
Assignee: Denis Maliarevich
Priority: Minor
Fix For: 3.2.next
Problem:
On server rich:panel renders unwanted elements for instance additional footer facet in panel's content. But VPE does NOT show elements that are not allowed by richfaces tag specification.
Solution:
Show surplus tags in VPE for rich:panel.
Example:
<rich:panel>
<f:facet name="header">
PHead111
<h:outputText>PanelHeader1</h:outputText>
<h:outputText>PanelHeader2</h:outputText>
<h:outputText>PanelHeader3</h:outputText>
<span>P1Head</span> PHead
</f:facet>
<f:facet name="footer">
<h:outputText>Col 1 footer3</h:outputText>
<span>COL1FOOT</span> C1FText
FooterFacet
</f:facet>
Panel Content
</rich:panel>
Behaviour:
Text "COL1FOOT C1FText FooterFacet" should be rendered in the panel's content.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months
[JBoss JIRA] Created: (JBIDE-3225) Components should render usual text inside
by Yura Zhishko (JIRA)
Components should render usual text inside
------------------------------------------
Key: JBIDE-3225
URL: https://jira.jboss.org/jira/browse/JBIDE-3225
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Visual Page Editor Templates
Affects Versions: 3.0.0.cr1
Reporter: Yura Zhishko
Assignee: Maxim Areshkau
Priority: Minor
1) DND or create any component from the list below
2) Print usual text inside component
ASSERT: Text should be rendered in VPE
RESULT: Text isn't rendered
Here is list of components with the same behavior:
<rich:inplaceInput>
<rich:inplaceSelect>
<rich:inputNumberSlider>
<rich:inputNumberSpinner>
<rich:paint2D>
<rich:spacer>
<a4j:actionparam>
<a4j:commandButton>
<a4j:push>
<a4j:log>
<h:commandButton>
<h:inputHidden>
<h:inputText>
<h:inputTextarea>
<h:messages>
<h:selectBooleanCheckbox>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months
[JBoss JIRA] (JBIDE-10127) Resolve selector in open on of class style in VPE
by Viacheslav Kabanovich (Created) (JIRA)
Resolve selector in open on of class style in VPE
-------------------------------------------------
Key: JBIDE-10127
URL: https://issues.jboss.org/browse/JBIDE-10127
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: jsp/jsf/xml source editing
Affects Versions: 3.3.0.M3
Reporter: Viacheslav Kabanovich
Assignee: Alexey Kazakov
Fix For: 3.3.x
EXECUTE: Create style sheet:
{code}
.styleA {color: #FF0000}
.styleA .styleB {color: #FF8000}
div.styleA {color: #FF0080}
div[title="x"].styleA {color: #0000FF}
p input.styleA {color: #CCAA00}
div p input.styleA {color: #CC00FF}
[title="y"] p input.styleA {color: #00CCFF}
{code}
EXECUTE: Create html:
{code}
<html>
<head>
<title>Hello!</title>
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<p class="styleA">
.styleA {color: #FF0000}
</p>
<p class="styleA">
.styleA {color: #FF0000}
<br/>
<b class="styleB">.styleA .styleB {color: #FF8000}</b>
</p>
<div class="styleA">
div.styleA {color: #FF0080}
</div>
<div title="x" class="styleA">
div[title="x"].styleA {color: #0000FF}
</div>
<p>
<input type="button" class="styleA" value="p input.styleA {color: #CCAA00}"/>
</p>
<div>
<p>
<input type="button" class="styleA" value="div p input.styleA {color: #CC00FF}"/>
</p>
</div>
<div title="y">
<div>
<p>
<input type="button" class="styleA" value="[title='y'] div p input.styleA {color: #00CCFF}"/>
</p>
</div>
</div>
</body>
</html>
{code}
ASSERT: Style opened at each class="styleA" should be the same as text value in element.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months