[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-07-07 Thread Joe Bohn (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12611267#action_12611267
 ] 

Joe Bohn commented on GERONIMO-4011:


What is the current status of this JIRA for 2.1.2?  Do we need to make a 
release of jline 0.9.95 available so that it can be included in in 2.1.2?  Do 
we know for a fact that this issue will be resolved with 0.9.95 when released?  
I'm trying to understand if this is required for 2.1.2 or merely optional if a 
resolution is found and jline is released in time for 2.1.2.  

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2

 Attachments: jline-0.9.95-SNAPSHOT.jar


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-29 Thread YunFeng Ma (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12600700#action_12600700
 ] 

YunFeng Ma commented on GERONIMO-4011:
--

Hi Jason, I've tried on Linux and it works fine for #1 and #2.

For Windows, I believe the root cause is BACKSPACE which doesn't work if a 
command is broken into multilines:
{noformat}
char cbuf[] = new char[len];
Arrays.fill(cbuf, BACKSPACE);
out.write(cbuf);
{noformat}

The above codes can only move the cursor to the beginning of the last line of a 
command, maybe it needs more native codes.

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2

 Attachments: jline-0.9.95-SNAPSHOT.jar


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-22 Thread Kevan Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12599272#action_12599272
 ] 

Kevan Miller commented on GERONIMO-4011:


Heh. Have you tried it?  :-P

I've tried on Windows (with patch), Mac OS, and Linux. All seem equivalently 
broken.

Once you wrap a line, you can't back up to the previous line. Well, actually 
you can logically back up to the previous line, you just can't see it. After 
you wrap a line, if you back arrow, the cursor stays on the last line of input. 
If you continue to back arrow, you're logically moving back through the 
command. If you then forward arrow, JLine will start printing your current 
position in the command. 

Recall of multi line commands looks pretty clunky. When you recall (up 
arrow/down arrow) several commands with line wraps, the recalled (but unused) 
commands start scrolling up the screen.  

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2

 Attachments: jline-0.9.95-SNAPSHOT.jar


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-16 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12597464#action_12597464
 ] 

Donald Woods commented on GERONIMO-4011:


From Yun Feng -
I've tried the new JLine, and the results are bellow:

1. Can get the previous multi-lines command just the first time, then afterward 
all the multi-lines command can not be handled properly.

2. For the multi-lines command, still can not move the cursor to the first line.


 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2

 Attachments: jline-0.9.95-SNAPSHOT.jar


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-16 Thread Jason Dillon (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12597490#action_12597490
 ] 

Jason Dillon commented on GERONIMO-4011:


Aye, the mutli-line paste stuff is stilll pendeing me knowing whats broke to 
fix ;-)

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2

 Attachments: jline-0.9.95-SNAPSHOT.jar


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-15 Thread Jason Dillon (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12597019#action_12597019
 ] 

Jason Dillon commented on GERONIMO-4011:


Are there other issues to be fixed other than the ones listed?  Seems there is 
some kinda multi-line problem on windows, but I have no idea how to fix that.

I can apply the duplicate prompt fix, that seems reasonable, and as mentioned 
the HeadlessException patch seems to be applied already, pending some digging 
to find out when/by who.

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (GERONIMO-4011) Need new release of JLine to fix GShell problems on Windows

2008-05-14 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-4011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12596831#action_12596831
 ] 

Donald Woods commented on GERONIMO-4011:


Jason, if you can, send me a RC drop of the updated JLine before it's released 
and I'll see that it gets tested on Windows for the failing cases reported by 
YunFeng.

 Need new release of JLine to fix GShell problems on Windows
 ---

 Key: GERONIMO-4011
 URL: https://issues.apache.org/jira/browse/GERONIMO-4011
 Project: Geronimo
  Issue Type: Bug
  Security Level: public(Regular issues) 
  Components: dependencies
Affects Versions: 2.1, 2.1.1, 2.1.2, 2.2
Reporter: Donald Woods
Assignee: Jason Dillon
 Fix For: 2.1.2, 2.2


 There are several GShell problems on Windows, due to JLine bugs.
 I'm going to try and create a patched build of JLine 0.9.94 to resolve these 
 issues, as Geronimo packages the JLine jar into our assembly for GShell to 
 use.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.