[JBoss JIRA] (JBIDE-12346) Remember the last edited i18n bundle
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-12346?page=com.atlassian.jira.plugi... ]
Alexey Kazakov reassigned JBIDE-12346:
--------------------------------------
Assignee: Jeff MAURY (was: Alexey Kazakov)
> Remember the last edited i18n bundle
> ------------------------------------
>
> Key: JBIDE-12346
> URL: https://issues.jboss.org/browse/JBIDE-12346
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: jsp/jsf/xml/html-source-editing
> Affects Versions: 3.3.0.Final
> Reporter: Daniel Sachse
> Assignee: Jeff MAURY
> Labels: i18n
> Fix For: LATER
>
>
> I mostly do i18n stuff after integrating the design provided by the designers.
> At this time, I am doing batch i18n and I would find it very handsome if the i18n tool would remember the last edited bundle instead of choosing the first one in the list.
> At the moment I always have to choose the correct one and sometimes I miss it and i18n keys and values are in the wrong bundle.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 3 months
[JBoss JIRA] (JBIDE-13035) Maven Repositories : TextMerge Preview always shows whitespace changes on Windows
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13035?page=com.atlassian.jira.plugi... ]
Alexey Kazakov reassigned JBIDE-13035:
--------------------------------------
Assignee: Jeff MAURY (was: Alexey Kazakov)
> Maven Repositories : TextMerge Preview always shows whitespace changes on Windows
> ---------------------------------------------------------------------------------
>
> Key: JBIDE-13035
> URL: https://issues.jboss.org/browse/JBIDE-13035
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: maven, upstream
> Affects Versions: 4.0.0.Beta2
> Environment: Windows 7 pro 64
> Reporter: Fred Bricon
> Assignee: Jeff MAURY
> Fix For: 4.5.0.AM1
>
> Attachments: Text_Merge_preview_show_whitespace_changes.png
>
>
> On Windows, the Maven Repositories wizard's preview pane always shows whitespace changes, diminishing the preview usefulness.
> !Text_Merge_preview_show_whitespace_changes.png!
> I tried to mess with the code a bit but to no avail. I suspected some line endings weirdness, but it seems to be really a problem with white spaces. I tried to compare the contents of my original settings.xml, to the contents in both panels, using an hex editor, they really are identical.
> I don't have any issue on linux.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 3 months
[JBoss JIRA] (JBIDE-17811) Incorrect bean injection eligibility assumption for beans excluded using DeltaSpike @Exclude
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-17811?page=com.atlassian.jira.plugi... ]
Alexey Kazakov reassigned JBIDE-17811:
--------------------------------------
Assignee: Jeff MAURY (was: Alexey Kazakov)
> Incorrect bean injection eligibility assumption for beans excluded using DeltaSpike @Exclude
> --------------------------------------------------------------------------------------------
>
> Key: JBIDE-17811
> URL: https://issues.jboss.org/browse/JBIDE-17811
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: cdi-extensions
> Environment: JBDS 8.0.0.Beta2d
> Reporter: Ron Šmeral
> Assignee: Jeff MAURY
> Fix For: LATER
>
>
> With the following classes on the classpath:
> {code:java|title=DeactivatableTest.java}
> @Inject
> private MyBean myBean;
> {code}
> {code:java|title=MyBean.java}
> @Exclude
> public class MyBean {}
> {code}
> {code:java|title=ExcludeExtensionDeactivator.java}
> public class ExcludeExtensionDeactivator implements ClassDeactivator {
> public Boolean isActivated(Class<? extends Deactivatable> targetClass {
> if (ExcludeExtension.class.equals(targetClass)) {
> return false;
> }
> return null;
> }
> }
> {code}
> ..the injection point in DeactivatableTest is marked with a warning:
> {noformat}
> No bean is eligible for injection to the injection point [JSR-299 §5.2.1] {noformat}
> ..which is incorrect. MyBean *is* eligible despite being annotated @Exclude, since ExcludeExtension is deactivated using the core DeltaSpike mechanism of deactivation (ClassDeactivator).
> There does not seem to be a (simple) solution to this other than executing the code in all available ClassDeactivators.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
9 years, 3 months