You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
(2) |
Mar
(12) |
Apr
|
May
|
Jun
|
Jul
(12) |
Aug
(1) |
Sep
(4) |
Oct
(4) |
Nov
(1) |
Dec
|
| 2010 |
Jan
|
Feb
(15) |
Mar
|
Apr
|
May
(22) |
Jun
|
Jul
(13) |
Aug
(2) |
Sep
(6) |
Oct
|
Nov
|
Dec
(5) |
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
(51) |
May
(7) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2012 |
Jan
|
Feb
(11) |
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
|
2
|
3
(1) |
4
|
5
(10) |
6
|
7
|
|
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
|
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
29
|
30
|
31
|
|
|
|
|
|
From: Charles O. N. <cha...@su...> - 2009-03-13 06:22:48
|
This was reported as a JRuby bug: even though you can line edit, and Ctrl-D exits the process, you can't use Ctrl-D to delete the character under the cursor. I don't know whether this is standard behavior for Ctrl-D, so my patch here is just adding it to the existing Ctrl-D behavior. Any objections to this? It's reported in the Jline tracker as bug #2608344 and in JRuby's tracker as JRUBY-2488 (http://jira.codehaus.org/browse/JRUBY-2488). Index: src/main/java/jline/ConsoleReader.java =================================================================== RCS file: /cvsroot/jline/jline/src/main/java/jline/ConsoleReader.java,v retrieving revision 1.21 diff -u -r1.21 ConsoleReader.java --- src/main/java/jline/ConsoleReader.java 15 May 2008 18:58:09 -0000 1.21 +++ src/main/java/jline/ConsoleReader.java 17 Feb 2009 07:15:49 -0000 @@ -511,7 +511,10 @@ if (buf.buffer.length() == 0) { return null; + } else { + success = deleteCurrentCharacter(); } + break; case COMPLETE: // tab |
|
From: Charles O. N. <cha...@su...> - 2009-03-05 22:38:08
|
Dale Anson wrote: > The only issue I'd really like to see fixed if possible is when you have > a long line that wraps in a terminal window, you can't get back to the > first part of the line to fix a typo.� The 'Home' key only goes to the > start of the line the cursor is on rather than to the start of the > wrapped line.� I'm using jline in my DbConsole project, > dbconsole.sourceforge.net <http://dbconsole.sourceforge.net>. Any thoughts on how to fix it? Is there a bug filed? - Charlie |
|
From: Dale A. <da...@gr...> - 2009-03-05 22:20:45
|
The only issue I'd really like to see fixed if possible is when you have a long line that wraps in a terminal window, you can't get back to the first part of the line to fix a typo. The 'Home' key only goes to the start of the line the cursor is on rather than to the start of the wrapped line. I'm using jline in my DbConsole project, dbconsole.sourceforge.net. Dale On Thu, Mar 5, 2009 at 9:55 AM, Charles Oliver Nutter < cha...@su...> wrote: > Jeremy Rayner wrote: > > Hiya, > > As Charles requested to hear from some users, this is a little > > email to say that I use jline in my project 'grash' > > > > info -> http://javanicus.com/blog2/items/161-index.html > > website -> http://grash.javanicus.com/grash > > > > I picked jline back in 2004 as it was the best pure Java way of > > getting all the command history goodness into my JVM shell, > > and it just works. Beautiful. Congrats on joining the team headius, > > Very good. Had any issues you haven't reported or any fixes you'd like > to see get in? > > - Charlie > > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, > CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source code: > SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Jline-users mailing list > Jli...@li... > https://lists.sourceforge.net/lists/listinfo/jline-users > |
|
From: Charles O. N. <cha...@su...> - 2009-03-05 18:13:43
|
Frank Wierzbicki wrote: > On Thu, Mar 5, 2009 at 12:00 PM, Charles Oliver Nutter > <cha...@su...> wrote: >> Frank, do you have any known bugs or patches for Jline? > I thought we where using a stock jline-0.9.94.jar, but I just > downloaded it and the md5's don't match -- I'll check with the other > Jython folks. > > As for bugs, I know we want some changes, but I'll have to gather > specifics (the vague answer I have at the moment is "we need more gnu > readline features to support iPython") iPython is an extra-fancy > interpreter environment for Python that we'd really love to get > working on Jython. We've got a similar situation with JRuby...just missing features essentially. I'm hoping we can gather user reports as much as possible before putting out a new release (0.10?) that includes everything. Given that this mailing list was populated by only a handful of people, we need to get the word out that we're soliciting bugs and fixes. - Charlie |
|
From: Frank W. <fwi...@gm...> - 2009-03-05 17:50:28
|
On Thu, Mar 5, 2009 at 12:00 PM, Charles Oliver Nutter <cha...@su...> wrote: > Frank, do you have any known bugs or patches for Jline? I thought we where using a stock jline-0.9.94.jar, but I just downloaded it and the md5's don't match -- I'll check with the other Jython folks. As for bugs, I know we want some changes, but I'll have to gather specifics (the vague answer I have at the moment is "we need more gnu readline features to support iPython") iPython is an extra-fancy interpreter environment for Python that we'd really love to get working on Jython. -Frank |
|
From: Charles O. N. <cha...@su...> - 2009-03-05 17:00:43
|
Frank Wierzbicki wrote: > Hey all, > > Jython also uses JLine, I'm glad to see a new release is forming! Frank, do you have any known bugs or patches for Jline? - Charlie |
|
From: Charles O. N. <cha...@su...> - 2009-03-05 16:55:16
|
Jeremy Rayner wrote: > Hiya, > As Charles requested to hear from some users, this is a little > email to say that I use jline in my project 'grash' > > info -> http://javanicus.com/blog2/items/161-index.html > website -> http://grash.javanicus.com/grash > > I picked jline back in 2004 as it was the best pure Java way of > getting all the command history goodness into my JVM shell, > and it just works. Beautiful. Congrats on joining the team headius, Very good. Had any issues you haven't reported or any fixes you'd like to see get in? - Charlie |
|
From: Jeremy R. <jer...@gm...> - 2009-03-05 16:04:52
|
Hiya, As Charles requested to hear from some users, this is a little email to say that I use jline in my project 'grash' info -> http://javanicus.com/blog2/items/161-index.html website -> http://grash.javanicus.com/grash I picked jline back in 2004 as it was the best pure Java way of getting all the command history goodness into my JVM shell, and it just works. Beautiful. Congrats on joining the team headius, ciao Jez -- Groovy Engineer http://twitter.com/j6wbs http://javanicus.com/blog2 |
|
From: Jason D. <ja...@pl...> - 2009-03-05 15:00:42
|
I recall Hiram's mail, but don't recall if there was a patch. --jason On Mar 5, 2009, at 11:13 AM, Charles Oliver Nutter wrote: > Is it in a bug report on sf.net? Can you point it out? > > Chris Custine wrote: >> Hi Charlie, >> If you guys are prepping for a new release, I would like to see Hiram >> Chirino's patch for ANSI colors on Win32 included if possible.� Any >> thoughts? >> >> Chris >> >> -- >> Chris Custine >> My Blog :: http://blog.organicelement.com >> Apache ServiceMix :: http://servicemix.apache.org >> Apache Directory Server :: http://directory.apache.org >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> Open Source Business Conference (OSBC), March 24-25, 2009, San >> Francisco, CA >> -OSBC tackles the biggest issue in open source: Open Sourcing the >> Enterprise >> -Strategies to boost innovation and cut costs with open source >> participation >> -Receive a $600 discount off the registration fee with the source >> code: SFAD >> http://p.sf.net/sfu/XcvMzF8H >> >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Jline-users mailing list >> Jli...@li... >> https://lists.sourceforge.net/lists/listinfo/jline-users > > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San > Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source > code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Jline-users mailing list > Jli...@li... > https://lists.sourceforge.net/lists/listinfo/jline-users |
|
From: Frank W. <fwi...@gm...> - 2009-03-05 14:05:44
|
Hey all, Jython also uses JLine, I'm glad to see a new release is forming! -Frank |
|
From: Charles O. N. <cha...@su...> - 2009-03-05 04:13:20
|
Is it in a bug report on sf.net? Can you point it out? Chris Custine wrote: > Hi Charlie, > If you guys are prepping for a new release, I would like to see Hiram > Chirino's patch for ANSI colors on Win32 included if possible.� Any > thoughts? > > Chris > > -- > Chris Custine > My Blog :: http://blog.organicelement.com > Apache ServiceMix :: http://servicemix.apache.org > Apache Directory Server :: http://directory.apache.org > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise > -Strategies to boost innovation and cut costs with open source participation > -Receive a $600 discount off the registration fee with the source code: SFAD > http://p.sf.net/sfu/XcvMzF8H > > > ------------------------------------------------------------------------ > > _______________________________________________ > Jline-users mailing list > Jli...@li... > https://lists.sourceforge.net/lists/listinfo/jline-users |
|
From: Chris C. <ccu...@ap...> - 2009-03-03 17:52:08
|
Hi Charlie, If you guys are prepping for a new release, I would like to see Hiram Chirino's patch for ANSI colors on Win32 included if possible. Any thoughts? Chris -- Chris Custine My Blog :: http://blog.organicelement.com Apache ServiceMix :: http://servicemix.apache.org Apache Directory Server :: http://directory.apache.org |