Search found 9055 matches

by Radu
Wed Aug 15, 2012 9:48 am
Forum: DocBook
Topic: Getting images to work in DB epub ANT transformation
Replies: 1
Views: 2864

Re: Getting images to work in DB epub ANT transformation

Hi, We will try to improve on the Docbook to EPUB transformation and add a parameter to specify where the images folder is located. In the meantime you could make some modifications to the ANT build file: OXYGEN_INSTALL_DIR/frameworks/docbook/xsl/epub/bin/build.xml it contains a target called: <targ...
by Radu
Wed Aug 15, 2012 8:25 am
Forum: Other Issues
Topic: com.oxygenxml.editor.editors.author.AuthorDnDListener for multiple opened Editors
Replies: 7
Views: 3040

Re: com.oxygenxml.editor.editors.author.AuthorDnDListener for multiple opened Editors

Hi Simon, You are right in your analysis, you have set the drag and drop listener as a separate extension and the same object gets reused among different opened documents. Indeed right now this is not useable because the init() does not get called on it when another editor is selected. I think it wo...
by Radu
Mon Aug 13, 2012 10:27 am
Forum: Other Issues
Topic: Author CSS Stylesheets
Replies: 10
Views: 5170

Re: Author CSS Stylesheets

Hi, I mean the position:fixed | relative | absolute selectors. Along with the top:, bottom:, right: ,left: ones. I noted this as an improvement request but this is very hard to achieve using our current internal architecture. What if the XML had additional tags outside of the Environment tags such a...
by Radu
Mon Aug 13, 2012 8:17 am
Forum: Other Issues
Topic: Invalid xref format
Replies: 9
Views: 3569

Re: Invalid xref format

Hi Sander,

A fix for this will be available in Oxygen 14.1, in September this year.
Thanks for the patience.

Regards,
Radu
by Radu
Fri Aug 10, 2012 2:51 pm
Forum: Other Issues
Topic: Author CSS Stylesheets
Replies: 10
Views: 5170

Re: Author CSS Stylesheets

Hi, We are an XML editor, we try to support as much as possible from the CSS spec but we will never have the level of support that a web browser does. It looks like the width property for inline elements is ignored in the Author view? Yes, right now it's supported for block elements but not for inli...
by Radu
Fri Aug 10, 2012 11:45 am
Forum: Other Issues
Topic: Invalid xref format
Replies: 9
Views: 3569

Re: Invalid xref format

Hi Sander, Now I think I understand. So you call "New Topic...", the "New from templates.." dialog shows up. Then in the "Save as" field you will have a value like: file:/C:/main/dita/Operator%20Web%20UI/topic.dita You do not browse for a specific location (because the ...
by Radu
Fri Aug 10, 2012 10:58 am
Forum: Other Issues
Topic: Class loading issue for plugin
Replies: 2
Views: 1974

Re: Class loading issue for plugin

Hi, I need to know the exact libraries you are referencing. Maybe you can paste the entire plugin.xml content in the reply. Oxygen creates a separate class loader for each loaded plugin. If you set preferReferencedResources then your referenced JARs will be preferred, for example your Saxon 9 jars w...
by Radu
Thu Aug 09, 2012 5:34 pm
Forum: SDK-API, Frameworks - Document Types
Topic: How can I do to know if the action was canceled by user ?
Replies: 2
Views: 2963

Re: How can I do to know if the action was canceled by user ?

Hi,

I think that if the user cancels the operation, the exception will be an instance of AuthorOperationStoppedByUserException.

Regards,
Radu
by Radu
Thu Aug 09, 2012 3:49 pm
Forum: Other Issues
Topic: Java extensions - system output
Replies: 2
Views: 1436

Re: Java extensions - system output

Hi, We do not redirect system.err or system.out in any way. So if you start Oxygen using our command line executables like oxygen.bat you should see the messages in the console. Or you can redirect yourself from the plugin Java code the System.err or out to a certain file or a custom view. Regards, ...
by Radu
Thu Aug 09, 2012 3:48 pm
Forum: Other Issues
Topic: Java Extensions - project directory
Replies: 2
Views: 1443

Re: Java Extensions - project directory

Hi,

You could try to use the API:

Code: Select all

ro.sync.exml.workspace.api.util.UtilAccess.expandEditorVariables(String, URL)
like:

Code: Select all

pluginWorkspaceAccess.getUtilAccess().expandEditorVariables("${pd}", null);
Regards,
Radu
by Radu
Thu Aug 09, 2012 3:04 pm
Forum: Other Issues
Topic: How can I see CGM Images in Oxygen Author ?
Replies: 6
Views: 2792

Re: How can I see CGM Images in Oxygen Author ?

Hi Sebastien,

Could you contact us directly at support@oxygenxml.com?

Regards,
Radu
by Radu
Thu Aug 09, 2012 8:29 am
Forum: Other Issues
Topic: Invalid xref format
Replies: 9
Views: 3569

Re: Invalid xref format

Hi Sander, And how exactly is the new topic "External payment transaction handled.dita" referenced in the DITA Map? What is the exact value of the @href attribute set on the topicref? Is the path contained in it properly escaped? Did you edit the DITA Map in the Text page or did you use ou...
by Radu
Wed Aug 08, 2012 10:32 am
Forum: Other Issues
Topic: Attributes View doesn't show empty attributes
Replies: 3
Views: 1762

Re: Attributes View doesn't show empty attributes

Dear Jurgen, Is it possible that you edited the topic in the Text page and removed the DOCTYPE declaration from it? A DTD-based DITA topic should have a DOCTYPE declaration before the root element like: <?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE topic PUBLIC "-//OASIS//DTD DITA Topic//EN&...
by Radu
Wed Aug 08, 2012 9:14 am
Forum: Other Issues
Topic: How can I see CGM Images in Oxygen Author ?
Replies: 6
Views: 2792

Re: How can I see CGM Images in Oxygen Author ?

Hi Sebastien,

From your experiments with that third party library, was it suitable for your needs?
Should we try to integrate that library by default with an Oxygen installation?

Regards,
Radu
by Radu
Tue Aug 07, 2012 2:33 pm
Forum: Common Problems
Topic: Using default HttpURLConnection
Replies: 1
Views: 1331

Re: Using default HttpURLConnection

Hi Mandar, Yes, Oxygen installs and uses its own implementation of java.net.HttpURLConnection based on the Apache HTTP Client open source libraries. So creating an URL based on HTTP and opening a connection by calling its methods will return our custom connection. In order to use a SUN HTTP connecti...
by Radu
Tue Aug 07, 2012 2:19 pm
Forum: Common Problems
Topic: Modify File > New?
Replies: 1
Views: 1086

Re: Modify File > New?

Hi Anathea, We have support for having editor variables in a file template. For example if you open the file template: OXYGEN_INSTALL_DIR\frameworks\dita\templates\topic\Topic.dita you will see that it contains an ${id} editor variable which gets expanded when the user creates a new DITA topic. The ...
by Radu
Tue Aug 07, 2012 8:42 am
Forum: Other Issues
Topic: Invalid xref format
Replies: 9
Views: 3569

Re: Invalid xref format

Hi Sander, As I replied here: http://tech.dir.groups.yahoo.com/group/dita-users/message/28179 the problem can happen when the DITA Map references a DITA topic with a @href value which is not fully escaped, something like: <topicref href="Event Detail Types Listed/Detail%20sectionTo%20-%20Copy.d...
by Radu
Mon Aug 06, 2012 2:44 pm
Forum: Other Issues
Topic: How can I represent an xml element with some attributes (id, name, ...) in a table with a css file ?
Replies: 2
Views: 1718

Re: How can I represent an xml element with some attributes (id, name, ...) in a table with a css file ?

Hello Sebastien, Sorry but you cannot visually create table cells from an element's attributes. In the next Oxygen version (14.1) you will at least be able to edit attributes in-place using usual controls like combo boxes or text fields so at least this will maybe prove useful for editing attributes...
by Radu
Mon Aug 06, 2012 10:48 am
Forum: Other Issues
Topic: Insert GUID?
Replies: 8
Views: 6005

Re: Insert GUID?

Hi Lea, I am still using Oxygen 10.3, is this possible? If you had a newer Oxygen version (I think 13.0 or newer) you would just have to open the new file template used to create DITA topics: OXYGEN_INSTALL_DIR/frameworks/dita/templates/topic/Topic.dita and its content contains an editor variable li...
by Radu
Mon Aug 06, 2012 10:41 am
Forum: Feature Request
Topic: CSS3: Printing Functionality
Replies: 3
Views: 2750

Re: CSS3: Printing Functionality

Hi Lea,

Sorry but we discussed this improvement request and this is not one of the directions in which we want to take Oxygen in the future.

Regards,
Radu
by Radu
Tue Jul 31, 2012 3:39 pm
Forum: Other Issues
Topic: element selection in author mode
Replies: 1
Views: 1026

Re: element selection in author mode

Hi Eleanor, Oxygen tries to determine the elements which may be inserted at a certain offset based on the associated schema. Could you also share with us the schema (and dependencies) which is used to validate the XML fragment you provided? You can contact us directly using support@oxygenxml.com Reg...
by Radu
Tue Jul 31, 2012 12:46 pm
Forum: XML Schemas
Topic: How can I force Author Oxygen to use an integrated schema ?
Replies: 2
Views: 2997

Re: How can I force Author Oxygen to use an integrated schema ?

Hi Sebastien, Here are a couple of ways (I would prefer alternative (1) for your case): 1) Create an XML catalog file in your framework directory which maps "http://www.s1000d.org/S1000D_4-1/xml_schema_flat/descript.xsd" to a local resource located in your framework directory like: <!DOCTY...
by Radu
Mon Jul 30, 2012 12:56 pm
Forum: Common Problems
Topic: Could not open/create prefs root node
Replies: 11
Views: 10010

Re: Could not open/create prefs root node

Hi, I understand. Apache FOP is run as an external process (as a different Java VM) in order to have better control over the memory it consumes. The started Java VM gives this warning when it tries to instantiate the java.util.prefs.WindowsPreferences class. When a fatal error occurs all the console...
by Radu
Mon Jul 30, 2012 12:34 pm
Forum: Common Problems
Topic: How to debug using the dita-ot
Replies: 3
Views: 2754

Re: How to debug using the dita-ot

Hi, You should make sure you are using Saxon EE 9.4.0.3 as an XSLT engine. You can either modify the transformation scenario and choose it as an XSLT engine then "Debug" the transformation scenario or if you are in the debugger perspective there is a combo box on the toolbar allowing you t...
by Radu
Mon Jul 30, 2012 8:54 am
Forum: Common Problems
Topic: eclipse-plugin: weird cursor-placement in XML editor within element named "style"
Replies: 5
Views: 2971

Re: eclipse-plugin: weird cursor-placement in XML editor within element named "style"

Hi Christian,

A fix for this will probably be available in the next Oxygen 14.0 minor bug fix release available on site (probably in a couple of weeks).
This RSS feed announces such minor bug fix releases:

http://www.oxygenxml.com/rssBuildID.xml

Regards,
Radu
by Radu
Fri Jul 27, 2012 11:37 am
Forum: Common Problems
Topic: How to enable logging for plugins
Replies: 4
Views: 3983

Re: How to enable logging for plugins

Hi Mandar, Oxygen also uses Apache Log4j internally for debug purposes. What we do when we want to show more logging (or logging for a certain package) is to configure a log4j.properties file in the OXYGEN_INSTALL_DIR . Our default log4j.properties (which is not present in an installation kit) has t...
by Radu
Thu Jul 26, 2012 12:57 pm
Forum: Other Issues
Topic: Element suggestions list
Replies: 3
Views: 1547

Re: Element suggestions list

Hi Neil, If you edit the document type, in the Author tab there is a Content Completion tab. In that tab you have a list of Remove content completion items to which you can add the various items you do not want to see in the content completion window (with exactly the same name as presented there). ...
by Radu
Wed Jul 25, 2012 4:17 pm
Forum: Common Problems
Topic: Classpath ${framework} variable
Replies: 1
Views: 1310

Re: Classpath ${framework} variable

Hi Patrick, I think the problem was already fixed in the latest 14.0 build available on site: http://www.oxygenxml.com/build_history.html#2012070512 Options GUI: When editing/duplicating a document type, the ${framework} editor variable from URLs in the Classpath was not expanded when choosing an op...
by Radu
Wed Jul 25, 2012 4:11 pm
Forum: Other Issues
Topic: Use translation in own framework
Replies: 1
Views: 1262

Re: Use translation in own framework

Hi Patrick, This topic should be a starting point: http://www.oxygenxml.com/doc/ug-oxygen/topics/localizing_frameworks.html Basically your translation.xml should look like this one: OXYGEN_INSTALL_DIR/frameworks/docbook/i18n/translation.xml then if you edit the Docbook 4 document type, in the Classp...
by Radu
Wed Jul 25, 2012 3:51 pm
Forum: Other Issues
Topic: Use "Specific Element Icons" in own framework
Replies: 11
Views: 4006

Re: Use "Specific Element Icons" in own framework

Hi Patrick, You are talking about the possibility to customize icons in the Outline view using our Java API, right? We have a new API interface called: ro.sync.exml.workspace.api.node.customizer.XMLNodeRendererCustomizer If you edit a document type, in the Extensions tab you can now set your own imp...