SourceForge.net | 13 Aug 2012 22:57
Picon

[ jedit-Plugin Bugs-3557021 ] Console: IllegalStateException

Plugin Bugs item #3557021, was opened at 2012-08-13 13:57
Message generated for change (Tracker Item Submitted) made by snarum-micron
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3557021&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Steve (snarum-micron)
Assigned to: Nobody/Anonymous (nobody)
Summary: Console: IllegalStateException

Initial Comment:
I think this is from console plugin, but not 100% certain.  Feel free to re-title it if I'm wrong.

I get the attached error dump out of jEdit every once in a while.  I haven't yet been able to narrow down what
causes it.  (I can't copy the error text out of the error dialog.  What a PAIN!)

I'm using:
jEdit 5.0pre2 daily as of 02-July-2012
all plugins are current Plugin Manager versions, except Project Viewer and SVN Plugin, which are daily
build from 27-July-2012

----------------------------------------------------------------------
(Continue reading)

SourceForge.net | 13 Aug 2012 22:58
Picon

[ jedit-Plugin Bugs-3557021 ] Console: IllegalStateException

Plugin Bugs item #3557021, was opened at 2012-08-13 13:57
Message generated for change (Comment added) made by snarum-micron
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3557021&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Steve (snarum-micron)
Assigned to: Nobody/Anonymous (nobody)
Summary: Console: IllegalStateException

Initial Comment:
I think this is from console plugin, but not 100% certain.  Feel free to re-title it if I'm wrong.

I get the attached error dump out of jEdit every once in a while.  I haven't yet been able to narrow down what
causes it.  (I can't copy the error text out of the error dialog.  What a PAIN!)

I'm using:
jEdit 5.0pre2 daily as of 02-July-2012
all plugins are current Plugin Manager versions, except Project Viewer and SVN Plugin, which are daily
build from 27-July-2012

----------------------------------------------------------------------
(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-3458372 ] FTP _getFile gives an empty VFSFile

Plugin Bugs item #3458372, was opened at 2011-12-12 12:25
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3458372&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jarek Czekalski (jarekczek)
>Assigned to: Nobody/Anonymous (nobody)
Summary: FTP _getFile gives an empty VFSFile

Initial Comment:
This is a macro reproducing the error.

String getFile(String s) {
  v = VFSManager.getVFSForPath(s);
  ses = v.createVFSSession(s, null);
  f = v._getFile(ses, s, null);
  String sRet = f.getPath();
  v._endVFSSession(ses, null);
  return sRet;
}

(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-3378762 ] SFTP VFS does not provide lastmodified dates

Plugin Bugs item #3378762, was opened at 2011-07-26 09:00
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3378762&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Alan Ezust (ezust)
>Assigned to: Nobody/Anonymous (nobody)
Summary: SFTP VFS does not provide lastmodified dates

Initial Comment:
Is it possible for the FTP VFS to provide last modified) for entries to the File System Browser?

----------------------------------------------------------------------

Comment By: Alan Ezust (ezust)
Date: 2011-11-26 21:12

Message:
It is not practical for the FTP protocol since most servers do not provide
this information.
But sftp servers can always provide that in response to ls -l
(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-3002532 ] FTP: run GUI code in the AWT thread

Plugin Bugs item #3002532, was opened at 2010-05-16 18:17
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3002532&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Marcelo Vanzin (vanza)
>Assigned to: Nobody/Anonymous (nobody)
Summary: FTP: run GUI code in the AWT thread

Initial Comment:
FTP's ConnectionManager.getConnectionInfo() will execute AWT code in the calling thread; this makes it
risky to perform VFS operations that touch the FTP plugin from a worker thread, since it may run GUI code.

Instead, it should make sure GUI code executes in the AWT thread by using something like
SwingUtilities.invokeAndWait() if the current thread is not the AWT thread.

----------------------------------------------------------------------

Comment By: Vadim Voituk (voituk)
Date: 2010-05-17 00:06

(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-2149207 ] SFTP : com.jcraft.jsch.JSchException: Auth fail

Plugin Bugs item #2149207, was opened at 2008-10-06 03:01
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=2149207&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: poleta333 (poleta333)
>Assigned to: Nobody/Anonymous (nobody)
Summary: SFTP : com.jcraft.jsch.JSchException: Auth fail

Initial Comment:
Hi

I'm trying to use the SFTP functionality on servers (I cannot modifiy the SSH configuration on these
servers) without success. 

I run latest release of Jedit on windows XP :
.version 4.3pre15
.build 04.03.15.00
.stablebuild 04.02.99.00

This is the version of the FPT plugin :
(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-3026794 ] FTP Plugin - Think slash in FTP username is part of path

Plugin Bugs item #3026794, was opened at 2010-07-08 03:40
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3026794&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: Accepted
Priority: 5
Private: No
Submitted By: Bogdan Gribincea (gribelu)
>Assigned to: Nobody/Anonymous (nobody)
Summary: FTP Plugin - Think slash in FTP username is part of path

Initial Comment:
We recently started using Adobe Business Catalyst as a CMS and the FTP access there requires us to enter the
Username as sitename.businesscatalyst.com/user <at> emailserver.com . JEdit connect to the FTP but it
throws an error because it's trying to CWD /user <at> emailserver.com <at> sitename.businesscatalyst.com:21/~/

The log speaks for itself:

13:33:18 [jEdit I/O #1] [debug] ConnectionManager: Thread[jEdit I/O #1,1,jEdit I/O]: Connecting to ftp://sitename.businesscatalyst.com:21
13:33:19 [jEdit I/O #1] [debug] FtpClient: Thread[jEdit I/O #1,1,jEdit I/O]: received response: 220-*****************************************************
13:33:19 [jEdit I/O #1] [debug] FtpClient: 220-Welcome to FTP
13:33:19 [jEdit I/O #1] [debug] FtpClient: 220-Please use your email address and password to login.
13:33:19 [jEdit I/O #1] [debug] FtpClient: 220-If you are registered for more than one site then your login
(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-1931653 ] No prompt for overwrite by SFTP?!

Plugin Bugs item #1931653, was opened at 2008-04-01 14:01
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=1931653&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Adam (firstman)
>Assigned to: Nobody/Anonymous (nobody)
Summary: No prompt for overwrite by SFTP?!

Initial Comment:
I was working with jEdit today (v4.3pre13) using the FTP plugin to work with files remotely through an
SFTP:// connection, when I accidentally did a "Save As" instead of an "Open" on a file I'd been working
with.  To my horror, jEdit did not prompt me (as it does for local files) if I wanted to overwrite the file - it
just went ahead and did it.

Could someone please fix this ASAP?  I have to go reassemble my file now...

thanks

Adam

(Continue reading)

SourceForge.net | 14 Aug 2012 21:45
Picon

[ jedit-Plugin Bugs-1712302 ] SFTP does not close out connections

Plugin Bugs item #1712302, was opened at 2007-05-03 12:35
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=1712302&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Tim Stauffer (el_taco)
>Assigned to: Nobody/Anonymous (nobody)
Summary: SFTP does not close out connections

Initial Comment:
According to the docs a connection should auto-close after 2 minutes of non-use. This is not happening.
Even the close unused connections does not close them. I have to exit out of jEdit for them to close. This was
brought to my attention when looking at processes running on my server which had over 60 connections active.

Using:
jEdit 4.3pre9 using Java 1.5.0_10
FTP Plugin 0.9.1
WinXP SP2

----------------------------------------------------------------------

(Continue reading)

SourceForge.net | 14 Aug 2012 21:48
Picon

[ jedit-Plugin Bugs-2149207 ] SFTP : com.jcraft.jsch.JSchException: Auth fail

Plugin Bugs item #2149207, was opened at 2008-10-06 03:01
Message generated for change (Settings changed) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=2149207&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: poleta333 (poleta333)
>Assigned to: Vadim Voituk (voituk)
Summary: SFTP : com.jcraft.jsch.JSchException: Auth fail

Initial Comment:
Hi

I'm trying to use the SFTP functionality on servers (I cannot modifiy the SSH configuration on these
servers) without success. 

I run latest release of Jedit on windows XP :
.version 4.3pre15
.build 04.03.15.00
.stablebuild 04.02.99.00

This is the version of the FPT plugin :
(Continue reading)

SourceForge.net | 15 Aug 2012 18:42
Picon

[ jedit-Plugin Bugs-2036999 ] BufferList VFS Browser open button label missing

Plugin Bugs item #2036999, was opened at 2008-08-03 11:32
Message generated for change (Comment added) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=2036999&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 1
Private: No
Submitted By: cgomez (cgomezsilva)
Assigned to: Nobody/Anonymous (nobody)
>Summary: BufferList VFS Browser open button label missing

Initial Comment:

The file manager (browse file) option in buffer list right-click context menu opens and works Ok, but has a
minor bug, The open button label is missing although seems functional. I confirmed this bug using buffer
list in 4.3pre14.

CAGS

----------------------------------------------------------------------

>Comment By: Alan Ezust (ezust)
Date: 2012-08-15 09:42
(Continue reading)

SourceForge.net | 16 Aug 2012 00:54
Picon

[ jedit-Plugin Bugs-3481056 ] JavaSideKick: NPE at getLocalVariable() on Completion

Plugin Bugs item #3481056, was opened at 2012-01-28 15:23
Message generated for change (Comment added) made by ezust
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3481056&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Alan Ezust (ezust)
Assigned to: Nobody/Anonymous (nobody)
Summary: JavaSideKick: NPE at getLocalVariable() on Completion

Initial Comment:
Console.jar is in my project classpath. System classpath is checked but plugins is not checked.
I was editing Console plugin sourcecode. 
In particular, line # 354 of SystemShell.java.
I wanted to do completion on a ConsoleProcess object. 

I typed:

     process.<completion>

I get this exception:

(Continue reading)

SourceForge.net | 16 Aug 2012 18:31
Picon

[ jedit-Plugin Bugs-3556671 ] ErrorList requires manual activation

Plugin Bugs item #3556671, was opened at 2012-08-12 06:29
Message generated for change (Comment added) made by jarekczek
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=565475&aid=3556671&group_id=588

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jarek Czekalski (jarekczek)
Assigned to: Jarek Czekalski (jarekczek)
Summary: ErrorList requires manual activation

Initial Comment:
since r21751 (by me) ErrorList doesn't display errors until manually activated, by showing the dockable.
Steps to reproduce:

1. instal Console 5.0 and ErrorList 2.0
2. make both plugins docked at bottom
3. activate Console dockable
4. restart jEdit
5. run command in console: echo "aaa:123:error"
6. ErrorList doesn't display any error

----------------------------------------------------------------------
(Continue reading)


Gmane