1 Oct 2002 10:44
1 Oct 2002 12:01
Re: Linux StartupProblem SAXParserFactory not found
<pwd <at> mdtsoft.com>
2002-10-01 10:01:32 GMT
2002-10-01 10:01:32 GMT
I found my own problem, when I installed j2sdk the rpm name was changed by sun and the old version was still there. changing my path made everything work correctly (at least as a frist try can tell) On 30 Sep, To: xmleditor-support <at> xmlmind.com wrote: > With either j2sdk-1_4_1 or j2sdk-1_4_0_01 (from the sun RPMs) I get the > following on startup: > > Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/parsers/SAXParserFactory > > What could I be missing (this is the first time I have tried xxe) > > thanks > -- It is MDT, Inc's policy to delete mail containing unsolicited file attachments. Please be sure to contact the MDT staff member BEFORE sending an e-mail with any file attachments; they will be able to arrange for the files to be received. This email, and any files transmitted with it, is confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please advise postmaster <at> mdtsoft.com <mailto:postmaster <at> mdtsoft.com>. Philip W. Dalrymple III <pwd <at> mdtsoft.com> MDT Software - The Change Management Company +1 678 297 1001 Fax +1 678 297 1003 -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 17:52
XMLmind XML Editor V2.0
Hussein Shafie <hussein <at> pixware.fr>
2002-10-01 15:52:36 GMT
2002-10-01 15:52:36 GMT
Professional Edition now available. See http://www.xmlmind.com/xmleditor/proedition.html Standard Edition is available at no charge. Download from http://www.xmlmind.com/xmleditor/download.shtml ======================= V2.0 (October 01, 2002) Enhancements (in both Standard and Professional Editions): * Added buttons to tool bar implementing common actions in the case of DocBook, Simplified DocBook or Slides and XHTML. These buttons are specified in <xxe_distribution_directory>/config/docbook/to olBar.xxe, <xxe_distribution_directory>/config/config/sdo cbook/toolBar.xxe and <xxe_distribution_directory>/config/config/xht ml/xhtml.xxe, therefore it is easy to adapt them to user's needs. * Added a very simple configuration for XML Schema. * In the Attributes tool, near the Value: text field, button with a list icon displays a dialog box containing the list of all defined IDs when the attribute being edited is of type IDREF or IDREFS. Note that this dialog box is also available when the attribute being edited is of type ID. This allows the user to know which IDs have already been defined or to ease typing a variant of an already defined ID. * Added support for Windows-1250 (East Europe) encoding. * Added an option to the Window tab of the Options dialog box. If this new checkbox is checked, XXE automatically brings the Validity tool tab to front when validity errors are found by last save to disk command. * Added a boolean attribute generateIds to configuration element newElementContent which, if set to true, specifies that required ID attributes are to be added with a unique ID rather than placeholder value "???". Bug fixes(in both Standard and Professional Editions): * It was possible to select a comment or processing instruction sibling of the root element. This caused XXE to ``freeze'' (a NullPointerException was reported). * A invalid XML catalog caused XXE to print a stack trace (signaling an ArrayIndexOutOfBoundsException) when loading a document. * The Edit popup menu, when popped at the bottom of the document view, was often partially out of screen. * Having "<?xml-stylesheet type="text/xsl" ... ?>" at the beginning of a XML document prevented XXE from using the CSS style sheets specified in the configuration file. * Replace All often crashed (a NullPointerException was reported) at the end of a successful replacement sequence. * It is now possible to use an URN rather than an URL as the system ID of the document type declaration. (Of course, doing so requires using a properly configured XML catalog.) * XML Schema only: when loading a document template containing empty elements with a data content type, XXE didn't automatically add a text placeholder to these empty elements. * XML Schema only: when, for example, the element content of P specified a sequence of at least two child elements C (minOccurs="2"), XXE created only one C when a new P was inserted. * XML Schema only: declaration of namespace "http://www.w3.org/2001/XMLSchema-instance" was not systematically added to instances using a XML Schema. Namespace declarations found in a XML Schema were not added to instances using this XML Schema. These two bugs caused the attribute editor to often display non-prefixed attribute names such as {http://www.w3.org/2001/XMLSchema-instance}typ e, which is harmless but not very readable. -- XMLmind XML Editor Information List xmleditor-announce <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-announce
1 Oct 2002 17:55
Re: windows-1250 encoding
Hussein Shafie <hussein <at> pixware.fr>
2002-10-01 15:55:45 GMT
2002-10-01 15:55:45 GMT
> Jakub Adamek wrote: > > is there any chance of your so beautiful editor supporting > windows-1250 encoding? Windows-1250 (East Europe) encoding is supported by V2.0 Final released today. -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 18:02
Re: clipboard on linux
Hussein Shafie <hussein <at> pixware.fr>
2002-10-01 16:02:56 GMT
2002-10-01 16:02:56 GMT
Alexander Dupuy wrote:
>
> Java supports primary selections as well as clipboard, but Swing only
> has built-in support for setting the primary selection in text and table
> objects, and setting the primary selection for those only appeared in
> 1.4. In any case, even with Java 1.4.1, the M1.3 XXE appears to use
> objects that do not set or get the X primary selection.
>
> It would be nice if XXE 2 would support X primary selections as well as
> clipboard; it's quite easy to retrofit - example code looks like this:
>
> > /**
> > * Copy a String to the system selection and possibly to the system clipboard.
> > *
> > * <at> param s String to copy
> > * <at> param wantCopy if true additionally copy to system clipboard.
> > */
> > static final void copyToClipboard(final String s, boolean wantCopy)
> > {
> > final Toolkit tk = Toolkit.getDefaultToolkit();
> > final Clipboard pri = tk.getSystemSelection();
> > final Clipboard cb = tk.getSystemClipboard();
> > final StringSelection ss = new StringSelection(s);
> >
> > pri.setContents(ss,ss);
> >
> > if (wantCopy)
> > cb.setContents(ss,ss);
> > }
Thanks for the detailed reply to Karl DeBisschop.
I didn't know that Java now supports X primary selections. We'll see
what we can do in this area...
--
XMLmind XML Editor Support List
xmleditor-support <at> xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 18:17
Re: clipboard on linux
Hussein Shafie <hussein <at> pixware.fr>
2002-10-01 16:17:58 GMT
2002-10-01 16:17:58 GMT
Karl DeBisschop wrote: > > It would also be nice if it would paste with unix button 2, even if the > paste came off some other clipboard. Aside the fact the XXE V2 does not (yet) support primary selection but just the clipboard, It is pretty easy to bind a mouse click with middle button to command paste. This can be done by adding the following binding element to XXE configuration files: <binding> <mousePressed button="2" /> <command name="paste" parameter="toOrInto" /> </binding> "XMLmind XML Editor - Power User's Guide" documents this kind of customization. See http://www.xmlmind.com/xmleditor/_distrib/docs/poweruser/index.html -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 18:15
RE: windows-1250 encoding
Jakub Adámek <jakubadamek <at> seznam.cz>
2002-10-01 16:15:20 GMT
2002-10-01 16:15:20 GMT
Great, fantastic. Jakub > -----Original Message----- > From: xmleditor-support-admin <at> pixware.fr > [mailto:xmleditor-support-admin <at> pixware.fr] On Behalf Of > Hussein Shafie > Sent: Tuesday, October 01, 2002 5:56 PM > To: Jakub Adamek > Cc: xmleditor-support <at> xmlmind.com > Subject: Re: windows-1250 encoding > > > > Jakub Adamek wrote: > > > > is there any chance of your so beautiful editor supporting > > windows-1250 encoding? > > Windows-1250 (East Europe) encoding is supported by V2.0 > Final released today. > -- > XMLmind XML Editor Support List > xmleditor-support <at> xmlmind.com > http://www.xmlmind.com/mailman/listinfo/xmleditor-support > -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 18:44
formatting of XML file
Leos Literak <literakl <at> centrum.cz>
2002-10-01 16:44:47 GMT
2002-10-01 16:44:47 GMT
Hi, I've got some issues with formatting of saved files. (see end of this file: http://kt.zork.net/kernel-traffic/trans/czech/kt20020916_184.xml ) It is able to make resulting XML look nice for some tags, which doesn't contain any children: <translator lang="Czech" contact="http://AbcLinuxu.cz" /> <issue date="16 Sep 2002 00:00:00 -0700" num="184" /> but for others, it combines them: <section title="VideoEntropie" subject="kernel & entropy: introducing video-entropyd" archive="" posts="1" startdate="09 Sep 2002 11:02:16 -0700"><p>Folkert van Heusden ohlásil zajímavý projekt video-entropyd:</p> <quote who="Folkert van Heusden"> <p>Z bezpečnostních důvodů entropních dat, nemusí být schopen je získat sám.</p> <p>A pro tyto úč zde tento program: dodává entropii do jaderného ovladače. Dělá to tak, crontabu každou minutu.</p> <p>Folkert program otestoval s webovou od firmy Philips. Najdete jej na adrese <a href="http://www.vanheusden.com/ved/">http://www.vanheusden.com/ved/</a>. Podobný problém pro audio je řešen na adrese.</p> </quote></section> this looks very ugly. It does it not only to XMLs with auto-generated DTD (above examples), but even to docbook: to, the message request that message, the template used, and any other information the syss about the message. </para> </listitem> </orderedlist> </msgtext> </entry> </row> <row> <entry>Exceptions</entry> <entry>none</entry> </row> </tbody> </tgroup> </table> </para> <para> <table frame="all"> <title>Revoke message</title> <tgroup align="char" cols="2" char="." charoff="50"> <tbody> <row> <entry>Description</entry> I would love to have human-friendly formatting: <table frame="all"> <title>Revoke message</title> <tgroup align="char" cols="2" char="." charoff="50"> <tbody> <row> <entry>Description</entry> I checked indentation in save tab in preferences dialog, but it doesnt help. Any idea? Thanks Leo -- -- Leos Literak http://AbcLinuxu.cz - tady je tucnakum hej! -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
1 Oct 2002 18:52
Re: clipboard on linux
Karl DeBisschop <kdebisschop <at> alert.infoplease.com>
2002-10-01 16:52:22 GMT
2002-10-01 16:52:22 GMT
On Tue, 2002-10-01 at 12:17, Hussein Shafie wrote: > Karl DeBisschop wrote: > > > > It would also be nice if it would paste with unix button 2, even if the > > paste came off some other clipboard. > > Aside the fact the XXE V2 does not (yet) support primary selection but > just the clipboard, It is pretty easy to bind a mouse click with middle > button to command paste. This can be done by adding the following > binding element to XXE configuration files: > > <binding> > <mousePressed button="2" /> > <command name="paste" parameter="toOrInto" /> > </binding> Very sweet. I'll see I can make a binding to the drag to copy as well. Thanks. BTW, loving the product so far. With any luck it will become used enough to cause my impoverished internet content provider/employer to fork over for a few professional licenses. -- -- Karl DeBisschop <kdebisschop <at> alert.infoplease.com> Director, Software Engineering & Development Information Please (http://www.infoplease.com) 617.542.6500 x2332 -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
2 Oct 2002 10:55
Re: formatting of XML file
Hussein Shafie <hussein <at> pixware.fr>
2002-10-02 08:55:42 GMT
2002-10-02 08:55:42 GMT
Leos Literak wrote: > > It is able to make resulting XML look nice for some tags, > which doesn't contain any children: > > <translator lang="Czech" contact="http://AbcLinuxu.cz" /> > > <issue date="16 Sep 2002 00:00:00 -0700" num="184" /> > > but for others, it combines them: > > <section title="VideoEntropie" > subject="kernel & entropy: introducing video-entropyd" archive="" > posts="1" startdate="09 Sep 2002 11:02:16 -0700"><p>Folkert van Heusden > ohlásil zajímavý projekt video-entropyd:</p> <quote > who="Folkert van Heusden"> <p>Z bezpeènostních dùvodù > entropních dat, nemusí být schopen je získat sám.</p> <p>A pro tyto úè > zde tento program: dodává entropii do jaderného ovladaèe. Dìlá to tak, > crontabu ka¾dou minutu.</p> <p>Folkert program otestoval s webovou > od firmy Philips. Najdete jej na adrese <a > href="http://www.vanheusden.com/ved/">http://www.vanheusden.com/ved/</a>. > Podobný problém pro audio je øe¹en na adrese.</p> > </quote></section> > > this looks very ugly. > > It does it not only to XMLs with auto-generated DTD (above examples), > but even to docbook: > > to, the message request that message, the template used, and > any other information the syss about the message. </para> </listitem> > </orderedlist> </msgtext> </entry> </row> <row> <entry>Exceptions</entry> > <entry>none</entry> </row> </tbody> </tgroup> </table> </para> > <para> <table frame="all"> <title>Revoke message</title> <tgroup > align="char" cols="2" char="." charoff="50"> <tbody> <row> > <entry>Description</entry> > > I would love to have human-friendly formatting: > > <table frame="all"> > <title>Revoke message</title> > <tgroup align="char" cols="2" char="." charoff="50"> > <tbody> > <row> > <entry>Description</entry> > > I checked indentation in save tab in preferences dialog, > but it doesnt help. Any idea? Ouput is cannot be indented for invalid elements. Let's assume your document is valid and the indent checkbox in the Options dialog box is checked. The following examples, directly copied from a file saved by XXE V2, use the DocBook DTD but everything said here is also true for any DTD or XML Schema: * Elements that can contain text (i.e. mixed elements) are formatted like this: <para>this is a paragraph containing a <emphasis>emphasis</emphasis> and a <literal>literal</literal> too.</para> * Elements that can only contain child elements are formatted like this: <table> <title>Title of the table</title> <tgroup cols="2"> <tbody> <row> <entry>Cell 1,1</entry> <entry>Cell 1,2</entry> </row> <row> <entry>Cell 2,1</entry> <entry>Cell 2,2</entry> </row> </tbody> </tgroup> </table> ___Unless this type of element is contained inside a mixed element___[*] In DocBook, you can insert a table inside a para (but not inside a simpara) and true, this gives you this ugly formatting (for the table): <para>this is a paragraph containing a table <table><title>Title of the table</title><tgroup cols="2"><tbody><row><entry>Cell 1,1</entry><entry>Cell 1,2</entry></row><row><entry>Cell2,1</entry><entry>Cell 2,2</entry></row></tbody></tgroup></table>but also <emphasis>emphasis</emphasis>.</para> But why including a table inside a para? This being said, It should be possible to improve case [*] -- XMLmind XML Editor Support List xmleditor-support <at> xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support
RSS Feed