From bogus@does.not.exist.com Wed Jul 2 11:39:32 2008
From: bogus@does.not.exist.com (mozer)
Date: Wed, 2 Jul 2008 18:39:32 +0200
Subject: [oXygen-user] html does not allow namespace declaration on the root
element
Message-ID: <21d9ade60807020939x24c0a7fan4fc6c5a5a38288f2@mail.gmail.com>
Dear,
with the following file
I have the following error
E [Xerces] Attribute "xmlns:xsd" must be declared for element type "html".
Can you explain me how to workaround this ?
Regards,
Xmlizer
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080702/35af35ae/attachment.html
From bogus@does.not.exist.com Wed Jul 2 18:44:25 2008
From: bogus@does.not.exist.com ()
Date: Thu, 3 Jul 2008 09:44:25 +1000
Subject: [oXygen-user] html does not allow namespace declaration on the
rootelement [SEC=UNCLASSIFIED]
Message-ID: <8BD19F29B0E16E4F88277A997CD872C203AF68F4@mail.agso.gov.au>
Hi Xmlizer,
I believe that the official reference to XHTML is to a DTD such as:
...
You should be able to use this format.
John
-----Original Message-----
From: oxygen-user-bounces at
[mailto:oxygen-user-bounces at ] On Behalf Of mozer
Sent: Thursday, 3 July 2008 2:40 AM
To: Oxygen User
Subject: [oXygen-user] html does not allow namespace declaration on the
rootelement
Dear,
with the following file
I have the following error
E [Xerces] Attribute "xmlns:xsd" must be declared for element type "html".
Can you explain me how to workaround this ?
Regards,
Xmlizer
From bogus@does.not.exist.com Thu Jul 3 01:11:31 2008
From: bogus@does.not.exist.com (Radu Coravu)
Date: Thu, 03 Jul 2008 09:11:31 +0300
Subject: [oXygen-user] html does not allow namespace declaration on the
root element
In-Reply-To: <21d9ade60807020939x24c0a7fan4fc6c5a5a38288f2@mail.gmail.com>
References: <21d9ade60807020939x24c0a7fan4fc6c5a5a38288f2@mail.gmail.com>
Message-ID: <486C6D93.1060804@sync.ro>
Dear Barry,
Because the HTML does not have an XML schema location reference Oxygen
validates it by default with the XHTML Strict DTD that John
told you about in the other mail.
The validation is done according to the XHTML document type located in
the Oxygen Preferences -> Document Type Association page.
The XHTML Strict DTD simply does not have in its grammar a definition
for an attribute named xmlns:xsd.
There are 2 solutions to this:
1) Refer to the XHTML 1.1 XML Schema in the file. You can use Oxygen,
select "New", Choose "From templates" and find the XHTML 1.1 Schema
based template.
2) Modify the XHTML Document Type from the Oxygen preferences and in the
Schema tab choose XML Schema as a schema type and set
"${frameworks}/xhtml11/schema/xhtml11.xsd"
in the Schema URI field.
Regards,
Radu
--
Radu Coravu XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
mozer wrote:
> Dear,
>
> with the following file
>
>
> xmlns="http://www.w3.org/1999/xhtml">
>
> I have the following error
>
> E [Xerces] Attribute "xmlns:xsd" must be declared for element type "html".
>
> Can you explain me how to workaround this ?
>
> Regards,
>
> Xmlizer
> ------------------------------------------------------------------------
>
> _______________________________________________
> oXygen-user mailing list
> oXygen-user at
> http://www.oxygenxml.com/mailman/listinfo/oxygen-user
>
From bogus@does.not.exist.com Thu Jul 3 08:40:24 2008
From: bogus@does.not.exist.com (Andrew Clegg)
Date: Thu, 3 Jul 2008 14:40:24 +0100
Subject: [oXygen-user] WSDL documentation missing imported files
Message-ID:
Afternoon all,
I've just started using Oxygen to help with top-down document/literal
web service development. I'm particularly interested in automatic
generation of docs from WSDLs and XSDs.
The WSDL I'm working on lives in a file called Services.wsdl, which
contains no schema definitions itself. It imports a file called
MessageTypes.xsd which defines the high-level types corresponding to
the elements which are immediate children of the wsdl:message
elements.
MessageTypes.xsd in turn imports another file, GridTypes.xsd, which
includes definitions for the fine-grained data types corresponding to
the actual fields in the input and output messages.
Now when I use Tools -> Generate Documentation -> WSDL Documentation
from Services.WSDL to produce HTML documentation, it doesn't seem to
be aware of the definitions in MessageTypes.xsd (let alone
GridTypes.xsd). The Type column for each message just says "N/A".
Ideally I'd like to see the correct type from MessageTypes.xsd in
here, and have the ability to click through to that type's actual
definition.
Am I missing something here? Or does the whole schema really have to
be stored in the WSDL in order for the doc generator to pick up the
types correctly? This seems like a pretty serious limitation since
storing everything in the WSDL is pretty bad practice for non-trivial
services.
Anyone know a workaround, or an alternative way to achieve this?
Cheers,
Andrew.
From bogus@does.not.exist.com Thu Jul 3 10:09:32 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Thu, 03 Jul 2008 18:09:32 +0300
Subject: [oXygen-user] WSDL documentation missing imported files
In-Reply-To:
References:
Message-ID: <486CEBAC.8030906@oxygenxml.com>
Hello,
The tool for generating HTML documentation for a WSDL definition file is
more limited than the one for generating documentation for an XML
Schema. One limitation is that the XML Schema definitions referenced in
the WSDL file are not documented in the final HTML result. We plan to
remove this limitation in a future version of Oxygen. It is possible
that one of the Oxygen versions that will be released before the end of
this year will implement that. Unfortunately I do not know a tool that
is able to document also the XML Schema types included in the WSDL file.
Regards,
Sorin
Andrew Clegg wrote:
> Afternoon all,
>
> I've just started using Oxygen to help with top-down document/literal
> web service development. I'm particularly interested in automatic
> generation of docs from WSDLs and XSDs.
>
> The WSDL I'm working on lives in a file called Services.wsdl, which
> contains no schema definitions itself. It imports a file called
> MessageTypes.xsd which defines the high-level types corresponding to
> the elements which are immediate children of the wsdl:message
> elements.
>
> MessageTypes.xsd in turn imports another file, GridTypes.xsd, which
> includes definitions for the fine-grained data types corresponding to
> the actual fields in the input and output messages.
>
> Now when I use Tools -> Generate Documentation -> WSDL Documentation
> from Services.WSDL to produce HTML documentation, it doesn't seem to
> be aware of the definitions in MessageTypes.xsd (let alone
> GridTypes.xsd). The Type column for each message just says "N/A".
> Ideally I'd like to see the correct type from MessageTypes.xsd in
> here, and have the ability to click through to that type's actual
> definition.
>
> Am I missing something here? Or does the whole schema really have to
> be stored in the WSDL in order for the doc generator to pick up the
> types correctly? This seems like a pretty serious limitation since
> storing everything in the WSDL is pretty bad practice for non-trivial
> services.
>
> Anyone know a workaround, or an alternative way to achieve this?
>
> Cheers,
>
> Andrew.
From bogus@does.not.exist.com Mon Jul 7 14:23:09 2008
From: bogus@does.not.exist.com (Jing, Jenny)
Date: Mon, 7 Jul 2008 15:23:09 -0400
Subject: [oXygen-user] xQueries in eXist
Message-ID: <18EA3ABA6E54124EB3CE222C13F68A46012659E09544@WINHBSMAIL01.hbs.edu>
Hi,
I tried to run xQueries in Oxygen, but in the Configure Transformation Scenario- Edit Scenario, I can't find the exist connection in the Transformer selection box. Does anyone know how to set it up? Or this is not available for
The current Oxygen and eXist releases?
Our catalogers create XML records, and need to search the Records by keyword or ID in exist.
I created several Canned xQueries for them to run. My second question is, is it possible to create a Search button in Oxygen, which could embed our canned xQueries in it, so that Our catalogers can use it to search records in eXist?
Thanks.
Jenny
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080707/d622b3dd/attachment.html
From bogus@does.not.exist.com Tue Jul 8 03:58:16 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Tue, 08 Jul 2008 11:58:16 +0300
Subject: [oXygen-user] xQueries in eXist
In-Reply-To: <18EA3ABA6E54124EB3CE222C13F68A46012659E09544@WINHBSMAIL01.hbs.edu>
References: <18EA3ABA6E54124EB3CE222C13F68A46012659E09544@WINHBSMAIL01.hbs.edu>
Message-ID: <48732C28.7060209@oxygenxml.com>
Hello,
The database connections are available only for XQuery transformation
scenarios, that is the scenarios listed in the Configure Transformation
Scenario dialog when the current document is an XQuery one. If the
current document is an XML one only the XSLT scenarios are listed.
Please switch to the XQuery file before opening the Configure
Transformation Scenario dialog.
We have the enhancement of listing all the scenarios (XSLT + XQuery) in
this dialog already logged for a future version of Oxygen.
Regards,
Sorin
Jing, Jenny wrote:
> Hi,
>
>
>
> I tried to run xQueries in Oxygen, but in the Configure Transformation
> Scenario- Edit Scenario, I can't find the exist connection in the
> Transformer selection box. Does anyone know how to set it up? Or this is
> not available for
>
> The current Oxygen and eXist releases?
>
>
>
> Our catalogers create XML records, and need to search the Records by
> keyword or ID in exist.
>
> I created several Canned xQueries for them to run. My second question
> is, is it possible to create a Search button in Oxygen, which could
> embed our canned xQueries in it, so that Our catalogers can use it to
> search records in eXist?
From bogus@does.not.exist.com Mon Jul 14 12:45:22 2008
From: bogus@does.not.exist.com (Gabrielle Burns)
Date: Mon, 14 Jul 2008 10:45:22 -0700
Subject: [oXygen-user] Feature request: MathML support for equations
Message-ID: <8181BCB64116D411B821005004075F6203DAC994@atlas.breault.com>
Does oXygen have plans to incorporate support for MathML in the near future?
We are currently using Oxygen 9.2 to create CHM (HTML Help) and PDF output
from the same files, based on DITA. Our source files (XML) currently include
over 200 equations. We create the equation files in MathType using its
MathML 2.0 translator setting, and save the equation files to GIF. This
approach renders a less than aesthetic equation output, either in the CHM or
PDF output. We have to apply a scaling attribute to the equation image in
the XML file to reduce the large equation sizes in PDF.
If oXygen users have suggestions for rendering equations in CHM and PDF
using DITA, these would be welcome. Thank you.
Gabrielle Burns
Lead Information Products Developer
BRO Software Applications
Breault Research Organization, Inc.
gburns at
From bogus@does.not.exist.com Tue Jul 15 11:38:48 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Tue, 15 Jul 2008 19:38:48 +0300
Subject: [oXygen-user] Feature request: MathML support for equations
In-Reply-To: <8181BCB64116D411B821005004075F6203DAC994@atlas.breault.com>
References: <8181BCB64116D411B821005004075F6203DAC994@atlas.breault.com>
Message-ID: <487CD298.6080507@oxygenxml.com>
Hello,
Yes, a future version of Oxygen will offer support for editing MathML
equations in the Author mode (CSS-driven tagless editing).
There is a plugin for DITA Open Toolkit called Plus:
http://tech.groups.yahoo.com/group/dita-users/files/Demos/
which adds SVG rendering for MathML to the XHTML output, the HTML Help
output and the Eclipse Help output generated with DITA Open Toolkit. It
does not add the MathML content to the PDF output. The SVG images should
not have the scaling problem of the GIF images that you use now. I tried
to integrate it in the DITA-OT distributed with Oxygen but I could not
do that yet because it seems it requires more than the usual steps for
integrating a DITA-OT plugin. It does not come with documentation for
the DITA developer yet but you can ask for help on the dita-users
mailing list if you want to use MathML content rendered as SVG images in
the output of DITA-OT before we integrate this plugin in Oxygen. The
creator of the plugin is Deborah Pickett which is very experienced in
using and customizing the DITA-OT:
http://tech.groups.yahoo.com/group/dita-users/
Regards,
Sorin
Gabrielle Burns wrote:
> Does oXygen have plans to incorporate support for MathML in the near future?
>
> We are currently using Oxygen 9.2 to create CHM (HTML Help) and PDF output
> from the same files, based on DITA. Our source files (XML) currently include
> over 200 equations. We create the equation files in MathType using its
> MathML 2.0 translator setting, and save the equation files to GIF. This
> approach renders a less than aesthetic equation output, either in the CHM or
> PDF output. We have to apply a scaling attribute to the equation image in
> the XML file to reduce the large equation sizes in PDF.
>
> If oXygen users have suggestions for rendering equations in CHM and PDF
> using DITA, these would be welcome. Thank you.
>
> Gabrielle Burns
> Lead Information Products Developer
> BRO Software Applications
> Breault Research Organization, Inc.
> gburns at
From bogus@does.not.exist.com Tue Jul 15 15:35:22 2008
From: bogus@does.not.exist.com (Mark Wilson)
Date: Tue, 15 Jul 2008 13:35:22 -0700
Subject: [oXygen-user] collation failure
Message-ID: <7227C64849B3440299557E42D3757A7F@BIGBOYSET>
I have read in the archive that to add my own collator to Oxygen, I must drop the jar file in the oxygen lib folder. I have done this, and still get the same error message:
F [Saxon-B 9.0.0.6] Collation http://saxon.sf.net/collation?class=CzechCollation has not been defined.
The line from my XSLT file is:
The jar tf command tell me the jar file contains the following manifest (I know very little about java):
META-INF
META-INF/MANIFEST.MF
CzechCollation.class
However, when I click on the jar , I get the error message: "failed to load Main-Class manifest attribute from ..." I assume this happens because the jar does not contain an application. Anyway, The CzechCollation.java file follows (Substantially shortened).
Thanks,
Mark
import java.text.ParseException;
import java.text.RuleBasedCollator;
public class CzechCollation extends RuleBasedCollator
{
public CzechCollation() throws ParseException
{
super(traditionalCzechRules);
}
private static String upperAcuteA = new String("\u00c1");
private static String lowerAcuteA = new String("\u00e1");
private static String upperUmlatA = new String("\u00c4");
Many letter definations removed to keep email short
private static String upperHacekZ = new String("\u017d");
private static String lowerHacekZ = new String("\u017e");
private static String traditionalCzechRules =
("< A,a," + upperAcuteA + "," + lowerAcuteA + "," + upperUmlatA + "," + lowerUmlatA +
Many parts of the string removed to keep email short
"< Z,z <" + upperHacekZ + "," + lowerHacekZ);
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080715/955627e2/attachment.html
From bogus@does.not.exist.com Tue Jul 15 16:26:52 2008
From: bogus@does.not.exist.com (Seraphim Larsen)
Date: Tue, 15 Jul 2008 14:26:52 -0700
Subject: [oXygen-user] Feature Request -- Run spell check entire DITA Map
Message-ID:
Hello,
I'd like to submit a feature request. Currently, it appears you can run
Spell Checker on only one file at a time.
It would be nice to be able to run Spell Checker on multiple files in one
operation:
- Run Spell Checker on all files found inside a DITA Map
- Run Spell Checker on all files in a Project
Thanks very much!
Seraphim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080715/2efc0a96/attachment.html
From bogus@does.not.exist.com Wed Jul 16 08:46:55 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Wed, 16 Jul 2008 16:46:55 +0300
Subject: [oXygen-user] collation failure
In-Reply-To: <7227C64849B3440299557E42D3757A7F@BIGBOYSET>
References: <7227C64849B3440299557E42D3757A7F@BIGBOYSET>
Message-ID: <487DFBCF.4010101@oxygenxml.com>
Hello,
Is that the only error message?
[Saxon-B 9.0.0.6] Collation
http://saxon.sf.net/collation?class=CzechCollation has not been defined
I created a jar file based on your CzechCollation class and I get the
above error and the following error:
[Saxon-B 9.0.0.6] Failed to instantiate class CzechCollation - missing
chars (=,;<&): < Z,z I have read in the archive that to add my own collator to Oxygen, I must
> drop the jar file in the oxygen lib folder. I have done this, and still
> get the same error message:
>
> F [Saxon-B 9.0.0.6] Collation
> http://saxon.sf.net/collation?class=CzechCollation
>
> has not been defined.
>
> The line from my XSLT file is: collation="http://saxon.sf.net/collation?class=CzechCollation"/>
>
> The jar tf command tell me the jar file contains the following manifest
> (I know very little about java):
> META-INF
> META-INF/MANIFEST.MF
> CzechCollation.class
>
> However, when I click on the jar , I get the error message: "failed to
> load Main-Class manifest attribute from ..." I assume this happens
> because the jar does not contain an application. Anyway, The
> CzechCollation.java file follows (Substantially shortened).
> Thanks,
> Mark
From bogus@does.not.exist.com Wed Jul 16 10:01:15 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Wed, 16 Jul 2008 18:01:15 +0300
Subject: [oXygen-user] Feature Request -- Run spell check entire DITA Map
In-Reply-To:
References:
Message-ID: <487E0D3B.7030003@oxygenxml.com>
Hello,
Now spell checking is applied only to the current file opened in an
editor panel and the errors are corrected in interactive mode: mark an
unknown word by selecting it in the editor panel and ignore or replace
it with a suggestion from the spell dictionary, mark the next unknown
word, etc. Running the spell checker in non-interactive mode (on a set
of files specified in a project or a DITA map) implies a change in the
mechanism for reporting and correcting the errors (for example to
display a list with all errors in a panel at the bottom of the Oxygen
window as in the case of the Find/Replace dialog vs. the Find All
action) and also implies adapting the spell checking implementation to
files not opened in an editor panel which is not trivial. Anyway we will
consider your request for a future version of Oxygen.
Thank you,
Sorin
Seraphim Larsen wrote:
> Hello,
>
> I'd like to submit a feature request. Currently, it appears you can run
> Spell Checker on only one file at a time.
>
> It would be nice to be able to run Spell Checker on multiple files in
> one operation:
>
> * Run Spell Checker on all files found inside a DITA Map
> * Run Spell Checker on all files in a Project
>
>
> Thanks very much!
> Seraphim
From bogus@does.not.exist.com Wed Jul 16 22:44:11 2008
From: bogus@does.not.exist.com (Seraphim Larsen)
Date: Wed, 16 Jul 2008 20:44:11 -0700
Subject: [oXygen-user] Feature Request -- Run spell check entire DITA Map
In-Reply-To: <487E0D3B.7030003@oxygenxml.com>
References:
<487E0D3B.7030003@oxygenxml.com>
Message-ID:
I would suggest that it work something like this:
- In the Map Editor, or in the Project View, select a new command: Check
Spelling
- If you were in Map Editor, it would start going through all the
topic files referenced by topicref
- If you were in Project View, it would go through all the files
currently visible in the filter, or currently selected
- It would scan each file for spelling problems.
- If it doesn't find any (in any of the files), it would report that.
- But if it does find any errors, it would open that topic file in the
editor, and then kick off the normal file-based spell checker.
- When that file-based process is done, ideally it would continue with
the map/project-based process.
- But even if it stopped after checking all the errors in that single
file, and you had to manually re-start the map/project spell check, it would
be a lot easier than what we have now.
So, this might be easier than what you describe. I don't think it's
necessary to generate a report in the error panel at the bottom of the
screen, as for error checking. That would be cool, but not necessary.
All it would really need to do is find each file, open it in the background,
run a check; if spelling errors found, open the file, and start the usual
spell-check process; if not, close the file and move on to the next.
What do you think?
Thanks!
Seraphim
On Wed, Jul 16, 2008 at 8:01 AM, Sorin Ristache wrote:
> Hello,
>
> Now spell checking is applied only to the current file opened in an editor
> panel and the errors are corrected in interactive mode: mark an unknown word
> by selecting it in the editor panel and ignore or replace it with a
> suggestion from the spell dictionary, mark the next unknown word, etc.
> Running the spell checker in non-interactive mode (on a set of files
> specified in a project or a DITA map) implies a change in the mechanism for
> reporting and correcting the errors (for example to display a list with all
> errors in a panel at the bottom of the Oxygen window as in the case of the
> Find/Replace dialog vs. the Find All action) and also implies adapting the
> spell checking implementation to files not opened in an editor panel which
> is not trivial. Anyway we will consider your request for a future version of
> Oxygen.
>
>
> Thank you,
> Sorin
>
>
>
> Seraphim Larsen wrote:
>
>> Hello,
>>
>> I'd like to submit a feature request. Currently, it appears you can run
>> Spell Checker on only one file at a time.
>>
>> It would be nice to be able to run Spell Checker on multiple files in one
>> operation:
>>
>> * Run Spell Checker on all files found inside a DITA Map
>> * Run Spell Checker on all files in a Project
>>
>>
>> Thanks very much!
>> Seraphim
>>
> _______________________________________________
> oXygen-user mailing list
> oXygen-user at
> http://www.oxygenxml.com/mailman/listinfo/oxygen-user
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080716/76c1c24c/attachment.html
From bogus@does.not.exist.com Thu Jul 17 10:13:59 2008
From: bogus@does.not.exist.com (Karl Stubsjoen)
Date: Thu, 17 Jul 2008 08:13:59 -0700
Subject: [oXygen-user] Shortcut Key(s) - Outline View Perspective
Message-ID: <8dde156b0807170813g572f6bdbwf291465747573d0b@mail.gmail.com>
Is there a shortcut key for the Oultine View Perspective?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080717/88123025/attachment.html
From bogus@does.not.exist.com Thu Jul 17 10:15:03 2008
From: bogus@does.not.exist.com (Karl Stubsjoen)
Date: Thu, 17 Jul 2008 08:15:03 -0700
Subject: [oXygen-user] Shortcut Key - Outline View Perspective
Message-ID: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com>
Is there a shortcut key for the Oultine View Perspective?
From bogus@does.not.exist.com Thu Jul 17 14:27:03 2008
From: bogus@does.not.exist.com (Shannon Scott Shiflett)
Date: Thu, 17 Jul 2008 15:27:03 -0400
Subject: [oXygen-user] RFE
Message-ID: <348E37DA-AB72-47C9-96F0-37B5902C60EA@virginia.edu>
Hi,
It would be useful if I could reset colors to defaults without
resetting all of my global options.
Thanks,
__________________________________________________
Shannon Scott Shiflett, programmer/analyst with ROTUNDA,
The University of Virginia Press, Charlottesville, VA USA
http://rotunda.upress.virginia.edu
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 8963 bytes
Desc: not available
Url : http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080717/14bcae54/attachment.bin
From bogus@does.not.exist.com Fri Jul 18 02:31:27 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Fri, 18 Jul 2008 10:31:27 +0300
Subject: [oXygen-user] Shortcut Key - Outline View Perspective
In-Reply-To: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com>
References: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com>
Message-ID: <488046CF.2050600@oxygenxml.com>
Hello,
Do you mean a shortcut key for making the Outline view visible when it
is not visible? No, we did not assign a shortcut key for that. We
considered that switching a view on and off is not a frequent action so
that the entries of the menu Perspective -> Show View should be enough
for switching on a view.
Regards,
Sorin
Karl Stubsjoen wrote:
> Is there a shortcut key for the Oultine View Perspective?
From bogus@does.not.exist.com Fri Jul 18 02:40:17 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Fri, 18 Jul 2008 10:40:17 +0300
Subject: [oXygen-user] RFE
In-Reply-To: <348E37DA-AB72-47C9-96F0-37B5902C60EA@virginia.edu>
References: <348E37DA-AB72-47C9-96F0-37B5902C60EA@virginia.edu>
Message-ID: <488048E1.1050003@oxygenxml.com>
Hello,
Do you mean the colors of a syntax highlight scheme set in Options ->
Preferences -> Editor -> Colors? We will add a Restore Defaults button
in this panel too as in other panels containing color preferences
(Editor -> Text, Diff -> Appearance, etc).
Regards,
Sorin
Shannon Scott Shiflett wrote:
> Hi,
>
> It would be useful if I could reset colors to defaults without resetting
> all of my global options.
>
> Thanks,
> __________________________________________________
> Shannon Scott Shiflett, programmer/analyst with ROTUNDA,
> The University of Virginia Press, Charlottesville, VA USA
> http://rotunda.upress.virginia.edu
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> oXygen-user mailing list
> oXygen-user at
> http://www.oxygenxml.com/mailman/listinfo/oxygen-user
From bogus@does.not.exist.com Fri Jul 18 08:00:29 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Fri, 18 Jul 2008 16:00:29 +0300
Subject: [oXygen-user] Feature Request -- Run spell check entire DITA Map
In-Reply-To:
References: <487E0D3B.7030003@oxygenxml.com>
Message-ID: <488093ED.2020006@oxygenxml.com>
Seraphim Larsen wrote:
> o But if it does find any errors, it would open that topic
> file in the editor, and then kick off the normal file-based
> spell checker.
> * When that file-based process is done, ideally it would continue
> with the map/project-based process.
How could the process be stopped in this case? Would a Cancel button
just skip the rest of the current file and start checking the next file
or stop the whole process? A button Cancel and another one like "Cancel
project level checking" just complicate the interaction of the user with
the dialog for spell checking in the current file. I think it is more
straightforward to show a progress dialog with a Cancel button and to
update dynamically on screen a list of errors as they are found by a non
interactive spell checking process.
> * But even if it stopped after checking all the errors in that
> single file, and you had to manually re-start the map/project
> spell check, it would be a lot easier than what we have now.
If the operation stops after spell checking the first file in
interactive mode does the user conclude that there are no more errors in
the whole project or that only the first file was checked? I think users
don't like ambiguities in a graphical interface.
I think an action for spell checking the whole project/DITA map is
expected to go through all the files of the project. If the action must
be re-launched on the same project after finishing with the first file
then it is not an action with project scope as the action name implies
so it sounds like an incomplete implementation.
Regards,
Sorin
From bogus@does.not.exist.com Fri Jul 18 11:27:36 2008
From: bogus@does.not.exist.com (Karl Stubsjoen)
Date: Fri, 18 Jul 2008 09:27:36 -0700
Subject: [oXygen-user] Shortcut Key - Outline View Perspective
In-Reply-To: <488046CF.2050600@oxygenxml.com>
References: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com>
<488046CF.2050600@oxygenxml.com>
Message-ID: <8dde156b0807180927w589d59b5x4446a418a4407fb0@mail.gmail.com>
Ok, bummer. It is a feature I raise my hand for.
Karl..
On Fri, Jul 18, 2008 at 12:31 AM, Sorin Ristache wrote:
> Hello,
>
> Do you mean a shortcut key for making the Outline view visible when it is
> not visible? No, we did not assign a shortcut key for that. We considered
> that switching a view on and off is not a frequent action so that the
> entries of the menu Perspective -> Show View should be enough for switching
> on a view.
>
>
> Regards,
> Sorin
>
>
> Karl Stubsjoen wrote:
>>
>> Is there a shortcut key for the Oultine View Perspective?
>
> _______________________________________________
> oXygen-user mailing list
> oXygen-user at
> http://www.oxygenxml.com/mailman/listinfo/oxygen-user
>
From bogus@does.not.exist.com Mon Jul 21 02:01:48 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Mon, 21 Jul 2008 10:01:48 +0300
Subject: [oXygen-user] Shortcut Key - Outline View Perspective
In-Reply-To: <8dde156b0807180927w589d59b5x4446a418a4407fb0@mail.gmail.com>
References: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com> <488046CF.2050600@oxygenxml.com>
<8dde156b0807180927w589d59b5x4446a418a4407fb0@mail.gmail.com>
Message-ID: <4884345C.9010703@oxygenxml.com>
We will consider allowing a shortcut in a future version. You can switch
quickly between the visible state and the invisible state of any view by
making it auto hideable with the "Toggle auto-hide" toolbar button.
Regards,
Sorin
Karl Stubsjoen wrote:
> Ok, bummer. It is a feature I raise my hand for.
>
> Karl..
>
> On Fri, Jul 18, 2008 at 12:31 AM, Sorin Ristache wrote:
>> Hello,
>>
>> Do you mean a shortcut key for making the Outline view visible when it is
>> not visible? No, we did not assign a shortcut key for that. We considered
>> that switching a view on and off is not a frequent action so that the
>> entries of the menu Perspective -> Show View should be enough for switching
>> on a view.
>>
>>
>> Regards,
>> Sorin
>>
>>
>> Karl Stubsjoen wrote:
>>> Is there a shortcut key for the Oultine View Perspective?
From bogus@does.not.exist.com Mon Jul 21 17:55:43 2008
From: bogus@does.not.exist.com (Karl Stubsjoen)
Date: Mon, 21 Jul 2008 15:55:43 -0700
Subject: [oXygen-user] Shortcut Key - Outline View Perspective
In-Reply-To: <4884345C.9010703@oxygenxml.com>
References: <8dde156b0807170815g7fd45744k7e47a55c793e69c1@mail.gmail.com>
<488046CF.2050600@oxygenxml.com>
<8dde156b0807180927w589d59b5x4446a418a4407fb0@mail.gmail.com>
<4884345C.9010703@oxygenxml.com>
Message-ID: <8dde156b0807211555m2622438bvd1eb78c2ff7173b4@mail.gmail.com>
Thank you... I am also familiar with double-clicking the title bar and
switching the view between attached and detached.
Karl..
On Mon, Jul 21, 2008 at 12:01 AM, Sorin Ristache wrote:
> We will consider allowing a shortcut in a future version. You can switch
> quickly between the visible state and the invisible state of any view by
> making it auto hideable with the "Toggle auto-hide" toolbar button.
>
>
> Regards,
> Sorin
>
>
> Karl Stubsjoen wrote:
>>
>> Ok, bummer. It is a feature I raise my hand for.
>>
>> Karl..
>>
>> On Fri, Jul 18, 2008 at 12:31 AM, Sorin Ristache
>> wrote:
>>>
>>> Hello,
>>>
>>> Do you mean a shortcut key for making the Outline view visible when it is
>>> not visible? No, we did not assign a shortcut key for that. We considered
>>> that switching a view on and off is not a frequent action so that the
>>> entries of the menu Perspective -> Show View should be enough for
>>> switching
>>> on a view.
>>>
>>>
>>> Regards,
>>> Sorin
>>>
>>>
>>> Karl Stubsjoen wrote:
>>>>
>>>> Is there a shortcut key for the Oultine View Perspective?
>
> _______________________________________________
> oXygen-user mailing list
> oXygen-user at
> http://www.oxygenxml.com/mailman/listinfo/oxygen-user
>
From bogus@does.not.exist.com Mon Jul 21 19:16:39 2008
From: bogus@does.not.exist.com (John Kelly)
Date: Mon, 21 Jul 2008 17:16:39 -0700
Subject: [oXygen-user] Problem validating XQuery documents
Message-ID: <7CBD85BD-26B9-4C00-AEF9-1D82304EC400@carrieriq.com>
Hello,
I'm modifying an XQuery document under 9.3 and am not getting
validation as I type. I tried manually running validation and got an
error that says "The transformer Saxon9B XQuery is not available
anymore. Please reconfigure the transformation scenario." I created a
custom validation scenario with the "" and go the same
error. When I changed that validation scenario to specifically use
"Saxon-B XQuery 9.0.0.6", it worked. Seems like there may be a bug in
the default setup.
. John
From bogus@does.not.exist.com Tue Jul 22 08:44:58 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Tue, 22 Jul 2008 16:44:58 +0300
Subject: [oXygen-user] Problem validating XQuery documents
In-Reply-To: <7CBD85BD-26B9-4C00-AEF9-1D82304EC400@carrieriq.com>
References: <7CBD85BD-26B9-4C00-AEF9-1D82304EC400@carrieriq.com>
Message-ID: <4885E45A.7050102@oxygenxml.com>
Hello,
The error message about the transformation scenario is misleading.
Oxygen 9.3 comes with a different version of Saxon (9.0.0.6) but the
preference for the default XQuery validation engine tries to find the
old version. Please go to Options -> Preferences -> XML ->
XSLT/FO/XQuery -> XQuery and clear that preference with the Restore
Defaults button. We will fix the problem in the next version.
Regards,
Sorin
John Kelly wrote:
> Hello,
>
> I'm modifying an XQuery document under 9.3 and am not getting validation
> as I type. I tried manually running validation and got an error that
> says "The transformer Saxon9B XQuery is not available anymore. Please
> reconfigure the transformation scenario." I created a custom validation
> scenario with the "" and go the same error. When I
> changed that validation scenario to specifically use "Saxon-B XQuery
> 9.0.0.6", it worked. Seems like there may be a bug in the default setup.
>
> . John
From bogus@does.not.exist.com Wed Jul 23 15:31:48 2008
From: bogus@does.not.exist.com (Lars Huttar)
Date: Wed, 23 Jul 2008 15:31:48 -0500
Subject: [oXygen-user] request: code templates for XSLT 2.0
Message-ID: <48879534.8080403@sil.org>
Hello,
I use the code templates feature a lot when creating XSLT stylesheets.
But now as I move more into XSLT 2.0, I notice the absence of code
templates for the new elements.
E.g. fegs:
rdh:
cg:
current-group()
and others.
Any plans to add these?
I will add some of my own for now, but I would welcome a full set that
came with Oxygen.
(I'm running Oxygen 9.3 standalone on Windows.)
Regards,
Lars
From bogus@does.not.exist.com Thu Jul 24 04:44:45 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Thu, 24 Jul 2008 12:44:45 +0300
Subject: [oXygen-user] request: code templates for XSLT 2.0
In-Reply-To: <48879534.8080403@sil.org>
References: <48879534.8080403@sil.org>
Message-ID: <48884F0D.1060701@oxygenxml.com>
Hello,
Thank you for your request. We will add built-in code templates for XSLT
2.0 elements in a future version.
Regards,
Sorin
Lars Huttar wrote:
> Hello,
> I use the code templates feature a lot when creating XSLT stylesheets.
> But now as I move more into XSLT 2.0, I notice the absence of code
> templates for the new elements.
> E.g. fegs:
>
>
> rdh:
>
>
> cg:
> current-group()
> and others.
>
> Any plans to add these?
> I will add some of my own for now, but I would welcome a full set that
> came with Oxygen.
>
> (I'm running Oxygen 9.3 standalone on Windows.)
>
> Regards,
> Lars
From bogus@does.not.exist.com Fri Jul 25 11:56:49 2008
From: bogus@does.not.exist.com (Shannon Scott Shiflett)
Date: Fri, 25 Jul 2008 12:56:49 -0400
Subject: [oXygen-user] Add to Project
Message-ID: <2B94BF02-95D6-4BA8-B580-AEAB65329080@virginia.edu>
Hi,
It would be most handy if I could drag a document tab and drop it in
the Project pane to add it to the project. I know I can right-click
and choose "Add to project" but the drag & drop choice just feels right.
Thanks,
__________________________________________________
Shannon Scott Shiflett, programmer/analyst with ROTUNDA,
The University of Virginia Press, Charlottesville, VA USA
http://rotunda.upress.virginia.edu
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 8963 bytes
Desc: not available
Url : http://www.oxygenxml.com/pipermail/oxygen-user/attachments/20080725/8e8dadd9/attachment.bin
From bogus@does.not.exist.com Fri Jul 25 17:28:24 2008
From: bogus@does.not.exist.com (Eliot Kimber)
Date: Fri, 25 Jul 2008 17:28:24 -0500
Subject: [oXygen-user] Add to Project
In-Reply-To: <2B94BF02-95D6-4BA8-B580-AEAB65329080@virginia.edu>
Message-ID:
On 7/25/08 11:56 AM, "Shannon Scott Shiflett" wrote:
> Hi,
> It would be most handy if I could drag a document tab and drop it in
> the Project pane to add it to the project. I know I can right-click
> and choose "Add to project" but the drag & drop choice just feels right.
> Thanks,
I would also like this for adding files to open archives. For example, I'm
testing a transform to modify DOCX files and it would be convenient to be
able to replace the existing archive's document.xml file with the one I've
generated and opened in the editor.
Cheers,
Eliot
----
Eliot Kimber | Senior Solutions Architect | Really Strategies, Inc.
email: ekimber at
office: 610.631.6770 | cell: 512.554.9368
2570 Boulevard of the Generals | Suite 213 | Audubon, PA 19403
www.reallysi.com | http://blog.reallysi.com
| www.rsuitecms.com
From bogus@does.not.exist.com Tue Jul 29 06:40:14 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Tue, 29 Jul 2008 14:40:14 +0300
Subject: [oXygen-user] Add to Project
In-Reply-To: <2B94BF02-95D6-4BA8-B580-AEAB65329080@virginia.edu>
References: <2B94BF02-95D6-4BA8-B580-AEAB65329080@virginia.edu>
Message-ID: <488F019E.5060604@oxygenxml.com>
Hello,
We noted your request. Also you can click the button "Add Edited File"
on the toolbar of the Project view instead of right clicking and
choosing "Add to Project".
Regards,
Sorin
Shannon Scott Shiflett wrote:
> Hi,
> It would be most handy if I could drag a document tab and drop it in the
> Project pane to add it to the project. I know I can right-click and
> choose "Add to project" but the drag & drop choice just feels right.
> Thanks,
> __________________________________________________
> Shannon Scott Shiflett, programmer/analyst with ROTUNDA,
> The University of Virginia Press, Charlottesville, VA USA
> http://rotunda.upress.virginia.edu
From bogus@does.not.exist.com Tue Jul 29 06:59:30 2008
From: bogus@does.not.exist.com (Sorin Ristache)
Date: Tue, 29 Jul 2008 14:59:30 +0300
Subject: [oXygen-user] Add to Project
In-Reply-To:
References:
Message-ID: <488F0622.6010408@oxygenxml.com>
Hello,
We noted this request too. We will consider it for a future version of
Oxygen. If the archive is large an operation to modify/add a file to the
archive may take some time but I think this cannot be avoided if we want
to keep the zip format of the whole set of files.
Regards,
Sorin
Eliot Kimber wrote:
> I would also like this for adding files to open archives. For example, I'm
> testing a transform to modify DOCX files and it would be convenient to be
> able to replace the existing archive's document.xml file with the one I've
> generated and opened in the editor.
>
> Cheers,
>
> Eliot