[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jedit-users
Subject:    Re: [ jEdit-users ] [ jEdit-announce ] jEdit 4.3pre12 is out!
From:       "FORREST EVANS" <forrest.evans () adtran ! com>
Date:       2007-12-08 1:01:14
Message-ID: AAB381172542374E9B7498EEFEF459410C45AF20 () EXV2 ! corp ! adtran ! com
[Download RAW message or body]

I loaded the plugins from your machine and they seem to be working.  It looks like the JDoc error was just due to Console not loading as you said.

Thanks,
Forrest

> -----Original Message-----
> From: Alan Ezust [mailto:alan.ezust@gmail.com] 
> Sent: Friday, December 07, 2007 6:52 PM
> To: FORREST EVANS
> Cc: jedit-users@lists.sourceforge.net
> Subject: Re: [ jEdit-users ] [ jEdit-announce ] jEdit 4.3pre12 is out!
> 
> I'll release Console and XSearch within the next 24 hours. As 
> for JDoc, that's a plugin I haven't looked at in a while, but 
> it looks like it's dependent on console so that problem may 
> go away once console is released.
> 
> In the meantime, you can grab development versions of jEdit 
> plugins from my own machine:
> 
> http://lazarus.oddiofile.com/workspace/jedit/jars/Console.jar
> http://lazarus.oddiofile.com/workspace/jedit/jars/XSearch.jar
> 
> 
> On Dec 7, 2007 4:11 PM, FORREST EVANS 
> <forrest.evans@adtran.com> wrote:
> > I'm getting some plugin errors with 4.3pre12/java 
> 1.6.0_03/winxp.  I was previously using 4.3pre11 without any problems.
> >
> > Console (4.3.4): Cannot start:java.lang.NoSuchMethodError: 
> > org.gjt.sp.jedit.BeanShell.getNameSpace()Lbsh/NameSpace;
> >
> > JDoc (1.0.2): Cannot start: java.lang.NoClassDefFoundError: 
> > console/Shell
> >
> > XSearch (1.3.2): Cannot start: java.lang.NoClassDefFoundError: 
> > bsh/NameSpace
> >
> > Thanks,
> > Forrest
> >
> >
> >
> > > -----Original Message-----
> > > From: jedit-users-bounces@lists.sourceforge.net
> > > [mailto:jedit-users-bounces@lists.sourceforge.net] On Behalf Of 
> > > Vampire
> > > Sent: Friday, December 07, 2007 5:50 PM
> > > To: jEdit Announce Mailinglist
> > > Subject: [ jEdit-users ] [ jEdit-announce ] jEdit 4.3pre12 is out!
> > >
> > > Hi all,
> > >
> > > I proudly present 4.3pre12 which came out now.
> > >
> > > Have fun with the new release.
> > >
> > > JEDIT 4.3 VERSION HISTORY
> > >
> > > {{{ Version 4.3pre12
> > >
> > > Thanks to Björn "Vampire" Kautler, Joe Walp, Matthieu Casanova, 
> > > Marcelo Vanzin and Daniel Hahler for contributing to this release.
> > >
> > > {{{ Bug Fixes
> > >
> > > - When removing a plugin that is not loaded, it's 
> declared jars are 
> > > now removed
> > >   too (Matthieu Casanova)
> > >
> > > - jEdit will not crash anymore if a beanshell.jar is 
> already in the 
> > > classpath
> > >   (#893349) (Matthieu Casanova)
> > >
> > > - The BufferHistory is now thread safe (#1808797) (Matthieu 
> > > Casanova)
> > >
> > > - Parsing XML files now uses correct encoding (which is 
> declared in 
> > > its
> > >   source or UTF-8 by default) instead of the system 
> default encoding.
> > >   (Kazutoshi Satoda)
> > >
> > >   NOTE: Related to this fix, some XML files which are 
> saved by older 
> > > jEdit
> > >   may not be correctly loaded. They used the system 
> default encoding 
> > > and
> > >   didn't declare the encoding (meaning they should use UTF-8). 
> > > recent.xml,
> > >   perspective.xml and registers.xml are known (and fixed).
> > >
> > > - Changed the encodings of recent.xml, perspective.xml and 
> > > registers.xml
> > >   to UTF-8 to allow characters which are not covered by 
> the system 
> > > default
> > >   encoding in them. (Kazutoshi Satoda)
> > >
> > > - SF Bug #1764090: Slight Error in jedit.desktop file
> > >   There was actually an error in jEdit.java that caused 
> it to hit an
> > >   NPE when processing URLs provided in the command line. 
> Fix it by not
> > >   trying to find an open buffer when trying to parse an URL in the
> > >   openFile() method. (Marcelo Vanzin)
> > >
> > > - SF Bug #1729313: BeanShell Error on Loading jEdit 4.3pre9
> > >   We need to force the default encoding to UTF-8 when running 
> > > startup scripts,
> > >   otherwise jEdit will fail to run the scripts shiped with it. On 
> > > the flip
> > >   side, if the user wants to use a different (non-compatible) 
> > > encoding that
> > >   is not trivially detected (such as anything with a BOM), a 
> > > buffer-local
> > >   property defining the encoding should be provided. (Marcelo 
> > > Vanzin)
> > >
> > > - registers.dtd now allow zero ENTRY element in ENTRIES. 
> It required 
> > > at
> > >   least one ENTRY while jEdit creates zero ENTRY case in 
> > > registers.xml.
> > >   (Kazutoshi Satoda)
> > >
> > > - Fix escape handling in the syntax highlighter. The handling of 
> > > escape rules
> > >   is now much more simplified: it's not only a lot less code but 
> > > it's much
> > >   easier to understand what it's actually doing. This fixes the 
> > > following
> > >   bugs: 1812205, 1807549, 1760646 and 1600458 (although 
> the last one 
> > > is fixed
> > >   as a side effect, not because the root cause of the bug 
> was fixed.)
> > >   (Marcelo Vanzin)
> > >
> > > - Binding simple "+" (not VK_ADD nor VK_PLUS) as a 
> shortcut is now 
> > > possible.
> > >   (SF.net Bug #1166530 - Kazutoshi Satoda)
> > >
> > > - Windows installer now prefer the path of javaw.exe in system 
> > > directory
> > >   to JDK/JRE directory, which was dependant on Java's 
> version. Now 
> > > you can
> > >   update Java without reinstalling jEdit.
> > >   (SF.net bug #1227497 - Kazutoshi Satoda)
> > >
> > > - Manually changed edit mode was reset by the mode in 
> recent files at
> > >   saving the buffer. (Kazutoshi Satoda)
> > >
> > > - Explicit "mode" value in props for jEdit.openFile() or
> > >   jEdit.openTemporary() was overwritten by the mode in 
> recent files.
> > >   (Kazutoshi Satoda)
> > >
> > > }}}
> > > {{{ Miscellaneous
> > >
> > > - After an hypersearch, if a result is on the caret line, it is 
> > > automatically selected
> > >   in the tree (Matthieu Casanova)
> > >
> > > - If you remove the last node of the HyperSearch 
> dockable, it will 
> > > hide
> > >   (Feature Request #1593526) (Matthieu Casanova)
> > >
> > > - A new option introduced in Saving & backups option 
> panel to turn 
> > > off autosave
> > >   of untitled buffers (Feature Request #1520769)  (Matthieu 
> > > Casanova)
> > >
> > > - New option in General Options: Check for File Change upon.
> > > Many options
> > >   to customize when jEdit checks for file changes, 
> especially useful 
> > > when many
> > >   files are mounted on remote/slow file systems. (Joe 
> Walp - Patch # 
> > > 1768638)
> > >
> > > - A new button is introduced in the plugin manager : 
> "Find Orphans".
> > >   It will find the jars that are in your jars directory 
> and do not 
> > > belong to any
> > >   plugin. Be careful some plugins like SQL can use jars without 
> > > declaring them
> > >   like the JDBC drivers (Matthieu Casanova)
> > >
> > > - A new option is introduced in the general option panel. 
> Now jEdit 
> > > will ask
> > >   the user if he wants to stop hypersearch if a result 
> count limit 
> > > is reached.
> > >   By default the count is 1000. It checks the limit 
> before each file 
> > > so it is
> > >   possible that a few more results are found before 
> asking (Matthieu 
> > > Casanova)
> > >
> > > - The release date in the plugin install panel is now 
> aligned to the 
> > > right (Matthieu Casanova) }}} {{{ Editing
> > >
> > > - Some enhancements to the IDL mode, and made some definitions in 
> > > the C mode
> > >   more reusable. (Marcelo Vanzin)
> > >
> > > - NO_ESCAPE is now deprecated and ignored by the parsing engine. 
> > > ESCAPE is now
> > >   a valid attribute for SPAN and SPAN_REGEXP rules. All 
> mode files 
> > > updated to
> > >   follow the new escape rule semantics. (Marcelo Vanzin)
> > >
> > > - Use MARKUP for tags in HTML mode and delegate css "style"
> > > attributes to the
> > >   CSS mode. (Daniel Hahler - Patch # 1783634)
> > >
> > > - Improved ml mode. (Lucas Dixon - Patch # 1834109)
> > >
> > > }}}
> > > {{{ API Changes
> > >
> > > - The bsh package was refactored to org.gjt.sp.jedit.bsh, all 
> > > plugins that uses
> > >   classes from this package will have to be repaired. This was 
> > > necessary to fix
> > >   bug (893349) (Matthieu Casanova)
> > >
> > > - A new GUIUtilities.listConfirm() method that returns also the 
> > > selected items
> > >   in the list (Matthieu Casanova)
> > >
> > > - JEditBuffer.undo() and JEditBuffer.redo() now takes a
> > >   org.gjt.sp.jedit.textarea.TextArea as parameter (Matthieu 
> > > Casanova)
> > >
> > > - Cleaned up org.gjt.sp.jedit.buffer.KillRing to improve 
> independence
> > >   from jEdit's core. This narrowed a few parts of API. 
> This can break
> > >   some existing macros or plugins.
> > >     - It no longer has any protected data field. Use public or 
> > > protected
> > >       methods including a new protected method reset() instead.
> > >     - KillRing.KillRingHandler was removed because it 
> should be a part
> > >       of the core which does save the killring into a XML file. It
> > >       became a private part of the core.
> > >   (Kazutoshi Satoda)
> > >
> > > - Dropped some concrete classes from API. They are just 
> implementation
> > >   details of the core. Use more abstract base classes or 
> interfaces
> > >   instead.
> > >     - org.gjt.sp.jedit.bufferio.JEditKillRing
> > >       -> org.gjt.sp.jedit.buffer.KillRing
> > >     - org.gjt.sp.jedit.JEditMode
> > >       -> org.gjt.sp.jedit.Mode
> > >     - org.gjt.sp.jedit.JEditRegisterSaver
> > >       -> org.gjt.sp.jedit.RegisterSaver
> > >     - org.gjt.sp.jedit.JEditRegistersListener
> > >       -> org.gjt.sp.jedit.RegistersListener
> > >   (Kazutoshi Satoda)
> > >
> > > - Added a new method ModeProvider.getModeForFile() that 
> will try to 
> > > find an
> > >   appropriate mode for a filename (Matthieu Casanova)
> > >
> > > - Added a new method EditPane.initPainter() that can be used when 
> > > using a
> > >   TextArea in the core or a plugin (Matthieu Casanova)
> > >
> > > - Added a new method GUIUtilities.getShortcutLabel() that makes a 
> > > label
> > >   string to show users what shortcut are assigned to an action.
> > >
> > > }}}
> > >
> > > }}}
> > >
> > >
> > >
> > > --------------------------------------------------------------
> > > -----------
> > > SF.Net email is sponsored by:
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for just 
> about anything 
> > > Open Source.
> > > http://sourceforge.net/services/buy/index.php
> > > _______________________________________________
> > > jEdit Announcement List
> > > jEdit-announce@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/jedit-announce
> > >
> > > --------------------------------------------------------------
> > > -----------
> > > SF.Net email is sponsored by:
> > > Check out the new SourceForge.net Marketplace.
> > > It's the best place to buy or sell services for just 
> about anything 
> > > Open Source.
> > > http://sourceforge.net/services/buy/index.php
> > > --
> > > -----------------------------------------------
> > > jEdit Users' List
> > > jEdit-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/jedit-users
> > >
> >
> >
> > 
> ----------------------------------------------------------------------
> > ---
> > SF.Net email is sponsored by:
> > Check out the new SourceForge.net Marketplace.
> > It's the best place to buy or sell services for just about anything 
> > Open Source.
> > http://sourceforge.net/services/buy/index.php
> > --
> > -----------------------------------------------
> > jEdit Users' List
> > jEdit-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/jedit-users
> >
> 

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
-- 
-----------------------------------------------
jEdit Users' List
jEdit-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jedit-users

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic