[JBoss JIRA] Created: (JBCOMMON-114) Warning for non File URLs should also check for vfszip URLs
by Darran Lofthouse (JIRA)
Warning for non File URLs should also check for vfszip URLs
-----------------------------------------------------------
Key: JBCOMMON-114
URL: https://jira.jboss.org/browse/JBCOMMON-114
Project: JBoss Common
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: common-core (2.x)
Affects Versions: 2.2.17.GA
Reporter: Darran Lofthouse
Assignee: Darran Lofthouse
Fix For: 2.2.18.GA
Within the resolveSystemIDasURL method the following check is performed: -
if (warnOnNonFileURLs && url.getProtocol().equalsIgnoreCase("file") == false)
{
log.warn("Trying to resolve systemId as a non-file URL: " + systemId);
}
With the introduction of vfszip URLs from JBoss 5 these should also be checked and the warning skipped if it is a vfszip URL.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] (AS7-2436) clear screen doesn't work on windows 7
by Alexey Loubyansky (Created) (JIRA)
clear screen doesn't work on windows 7
--------------------------------------
Key: AS7-2436
URL: https://issues.jboss.org/browse/AS7-2436
Project: Application Server 7
Issue Type: Bug
Components: CLI
Affects Versions: 7.1.0.Alpha1
Reporter: Alexey Loubyansky
Assignee: Alexey Loubyansky
Following the discussion [jboss-as7-dev] AS 7.1.0 - jboss-admin : cls/clear command not working
I am using Windows 7 64 bit and it is not working.
On 31/10/2011 11:53 PM, Alexey Loubyansky wrote:
> > No, it is expected to work. It does work on linux and remember verifying
> > it on vista. CLI uses jline to manage the terminal. This is what its
> > clearScreen impl looks like
> >
> > /**
> > * Clear the screen by issuing the ANSI "clear screen" code.
> > */
> > public boolean clearScreen() throws IOException {
> > if (!terminal.isANSISupported()) {
> > return false;
> > }
> >
> > // send the ANSI code to clear the screen
> > printString(((char) 27) + "[2J");
> > flushConsole();
> >
> > // then send the ANSI code to go to position 1,1
> > printString(((char) 27) + "[1;1H");
> > flushConsole();
> >
> > redrawLine();
> >
> > return true;
> > }
> >
> > Maybe the terminal doesn't support ANSI?
> >
> > On 10/30/2011 07:35 AM, Vimal Kansal wrote:
>> >> I am using jboss-admin on windows 7 64 bit and both cls/clear are not
>> >> working : they just don't do anything. I wonder if the command is just a
>> >> place holder for now?
--
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, 8 months
[JBoss JIRA] (AS7-2949) DMR Browser
by Max Rydahl Andersen (Created) (JIRA)
DMR Browser
-----------
Key: AS7-2949
URL: https://issues.jboss.org/browse/AS7-2949
Project: Application Server 7
Issue Type: Feature Request
Components: Console
Reporter: Max Rydahl Andersen
Assignee: Heiko Braun
I know the CLI exist to browse and perform operations in the management API and its definitely awesome, but it has some severe limitations.
1) It requires you to have AS7 installed
2) I can't access it within a browser
3) It requires upfront DMR knowledge to get to the information
4) I cannot link to it for sharing information to my peers (this could be partially handled by command line but then we are back to 1 & 2)
Similar the current admin console is not sufficient for all cases since it does not allow you to see parts of the DMR model that the admin console does not have UI support for yet.
Thus I suggest we get a way to browse the DMR model to provide a way to read and understand the model by simply browsing it *then* users can use that info to start getting more into the CLI approach. And even when you got the CLI approach handled, just being able to click through and browse the content would be a tremendous help. The console could even be able to generate/show the paths and proper syntax to perform operations via the CLI.
And the CLI could be able to open a webbrowser for a certain segment for more interactive browsing.
Similar tools like JBoss Tools could link to this DMR browser for nice navigation.
next steps could be to also support doing CLI-like operations in the browser but that is not the urgent need.
--
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, 8 months