Search found 9048 matches

by Radu
Tue Aug 28, 2012 3:09 pm
Forum: Other Issues
Topic: Displaying images
Replies: 1
Views: 1062

Re: Displaying images

Hi Neal,

Sure, just add another selector in the CSS like:

Code: Select all

graphic{
content: attr(filename, url);
}
Regards,
Radu
by Radu
Tue Aug 28, 2012 10:30 am
Forum: Other Issues
Topic: how can I get the position (line, column) from an XPath?
Replies: 14
Views: 7462

Re: how can I get the position (line, column) from an XPath?

Hi Sebastien, I understand the difficulty. Unfortunately right now there is no API to easily create a DocumentPositionInfo over an AuthorNode (or for a certain offset in the Author document). We will try to add the API. A workaround for the Author page would be to add your own highlights using the A...
by Radu
Mon Aug 27, 2012 12:33 pm
Forum: Other Issues
Topic: how can I get the position (line, column) from an XPath?
Replies: 14
Views: 7462

Re: how can I get the position (line, column) from an XPath?

Hi, I do not quite understand. What exactly does the web service validation return? An XPath expression? How does it look like? If the XPath expression is valid we already have API like: ro.sync.ecss.extensions.api.AuthorDocumentController.findNodesByXPath(String, boolean, boolean, boolean) Otherwis...
by Radu
Mon Aug 27, 2012 11:22 am
Forum: Other Issues
Topic: how do I know if the user is in text mode or author ?
Replies: 2
Views: 1304

Re: how do I know if the user is in text mode or author ?

Hi Sebastien, Assuming you are using a workspace access plugin, the code would be like: WSEditor currentEditorAccess = pluginWorkspaceAccess.getCurrentEditorAccess(StandalonePluginWorkspace.MAIN_EDITING_AREA); if(currentEditorAccess != null) { String currentPageID = currentEditorAccess.getCurrentPag...
by Radu
Mon Aug 27, 2012 11:18 am
Forum: Common Problems
Topic: Search before/after date in 'track changes' PI
Replies: 2
Views: 2059

Re: Search before/after date in 'track changes' PI

Hi, Thanks for the interesting use case. In one of the future Oxygen versions we will provide a special "Review" panel showing all changes and it will also probably have certain filters like viewing all changes a certain author made or viewing changes between certain dates. We'll let you k...
by Radu
Mon Aug 27, 2012 10:39 am
Forum: Common Problems
Topic: PDF image rendering w/ XEP
Replies: 1
Views: 1756

Re: PDF image rendering w/ XEP

Hi, There have been some discussions in the past on the DITA Users List about this: http://tech.groups.yahoo.com/group/dita-users/message/25321 Maybe you should also address RenderX XEP about this problem. But first you might want to try and re-save the image to JPG, maybe it is saved to another for...
by Radu
Mon Aug 27, 2012 10:12 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Shortcut key for Cross References
Replies: 9
Views: 6213

Re: Shortcut key for Cross References

Thanks Sander, We'll consider this.

Regards,
Radu
by Radu
Fri Aug 24, 2012 12:54 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Shortcut key for Cross References
Replies: 9
Views: 6213

Re: Shortcut key for Cross References

Hi Sander,

I understand the problem.
The Preview area in the dialogs used to insert conrefs, xrefs uses only the "dita.css". If you make the changes directly there, they should be visible in the Preview area.

Regards,
Radu
by Radu
Wed Aug 22, 2012 9:06 am
Forum: Common Problems
Topic: WSDL 2.0 Namespace -why is the standard namespace invalid?
Replies: 2
Views: 1761

Re: WSDL 2.0 Namespace -why is the standard namespace invalid?

Hi,

You are right, Oxygen should not complain in this case. We'll try to correct the behavior in Oxygen 14.1 which will appear in September this year.

Regards,
Radu
by Radu
Wed Aug 22, 2012 8:56 am
Forum: Common Problems
Topic: Inconsistent tabbing behavior
Replies: 1
Views: 1192

Re: Inconsistent tabbing behavior

Hi, Those elements in which the tab inserts the spaces are probably elements which have been declared as space-preserve either in the XML or in the associated schema or in the CSS used to render the XML in the Author page. The idea when being in a space preserve element and pressing TAB would be tha...
by Radu
Wed Aug 22, 2012 8:41 am
Forum: Other Issues
Topic: Term keyrefs don't resolve
Replies: 1
Views: 1301

Re: Term keyrefs don't resolve

Hi Roger,

Oxygen does not yet bring the content referenced via a keyref as static text in the Author page. But we have plans for this and we'll notify you when it gets implemented.
Clicking the keyref to navigate to the key definition in the DITA Map should work though.

Regards,
Radu
by Radu
Tue Aug 21, 2012 4:13 pm
Forum: Other Issues
Topic: Define which attributes may be edited
Replies: 7
Views: 3100

Re: Define which attributes may be edited

Hi Simon, We do not have API to prohibit editing in the Author page certain attributes. But we have API which would allow you to filter completely from the Attributes view certain attributes: ro.sync.exml.workspace.api.editor.page.author.WSAuthorEditorPageBase.addAuthorAttributesDisplayFilter(Author...
by Radu
Mon Aug 20, 2012 3:07 pm
Forum: Other Issues
Topic: Lock opened files
Replies: 3
Views: 2314

Re: Lock opened files

Hi Patrick, Oxygen could generate a second hidden file (sth. like filename.ext.lock) on open and delete it on closing a document. How about if you generate the extra file when Oxygen opens a document? Our plugins SDK allows you to create a "Workspace Access" plugin: http://www.oxygenxml.co...
by Radu
Mon Aug 20, 2012 12:59 pm
Forum: Other Issues
Topic: Lock opened files
Replies: 3
Views: 2314

Re: Lock opened files

Hi Patrick, We have API like: AuthorEditorAccess.setEditable(boolean editable) But Oxygen does not know if the file was already opened by other users. Do you have this information on your side? Also if you set a file as read-only on the network share (or on the local drive) Oxygen would show a small...
by Radu
Fri Aug 17, 2012 4:22 pm
Forum: Other Issues
Topic: showStatusMessage
Replies: 1
Views: 1193

Re: showStatusMessage

Hello Patrick, This is the usual behavior of swing applications. An AuthorOperation is executed on the Java AWT thread. As long as the AWT thread is busy (performing the operation's code) repaint is not done in the entire application as the repaint should also be made by the AWT thread. What you cou...
by Radu
Fri Aug 17, 2012 2:09 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, The "${frameworks}" approach worked for me. My implementation was something very basic like: public class XMLNodeCustomizerImpl extends XMLNodeRendererCustomizer { @Override public BasicRenderingInformation getRenderingInformation( NodeRendererCustomizerContext arg0) { BasicRen...
by Radu
Fri Aug 17, 2012 12:11 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, First of all, we fixed the problem with not expanding the ${framework} variable and a fix will be available in a couple of weeks in the next Oxygen 14.0 minor bug fix which is announced in this RSS feed: http://www.oxygenxml.com/rssBuildID.xml The "${frameworks}" approach does ...
by Radu
Fri Aug 17, 2012 9:21 am
Forum: Common Problems
Topic: CSS Alternative Image
Replies: 12
Views: 5425

Re: CSS Alternative Image

Hi Patrick, Unfortunately the StylesFilter does not have access to the AuthorAccess interface. You have two options: 1) Use the java.lang.System.setProperty(String, String) method to set a system property on one side and then to read it on the other 2) In Oxygen 14.0 we introduced a static accessor ...
by Radu
Fri Aug 17, 2012 8:36 am
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,

Indeed using the ${framework} editor variable does not work (but we'll fix this), that's why I suggested you using the "${frameworks}/myframework/templates/icons/my_16.gif" approach.

Regards,
Radu
by Radu
Thu Aug 16, 2012 11:27 am
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 should look over the JavaDoc from the API method: ro.sync.exml.workspace.api.node.customizer.BasicRenderingInformation.setIconPath(String) Set the path of the icon used to render a node. The path can be an icon file path, the string representation of an icon URL or can contain editor...
by Radu
Thu Aug 16, 2012 11:17 am
Forum: Common Problems
Topic: CSS Alternative Image
Replies: 12
Views: 5425

Re: CSS Alternative Image

Hi Patrick, So you created a custom action for image.display[on|off] and added it to the toolbar, right? The easiest way would probably be to set a System property (which can be read on the StylesFilter side) then call the API method: ro.sync.exml.workspace.api.editor.page.author.WSAuthorEditorPageB...
by Radu
Thu Aug 16, 2012 10:11 am
Forum: Other Issues
Topic: com.oxygenxml.editor.editors.author.AuthorDnDListener for multiple opened Editors
Replies: 7
Views: 3038

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

Hi Simon,

This is too soon for us to generate an official 14.0 bug fix release.
But I will try in a couple of days to generate an un-official Oxygen 14.0 Eclipse plugin kit for you with the fix in place.

Regards,
Radu
by Radu
Wed Aug 15, 2012 11:30 am
Forum: Other Issues
Topic: com.oxygenxml.editor.editors.author.AuthorDnDListener for multiple opened Editors
Replies: 7
Views: 3038

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

Hi Simon, We also plan to release Oxygen 14.1 in the middle of September but in order for you not to depend on our usual release delays I will try to add fix also in the next Oxygen 14.0 minor bug fix releases which are usually announced here: http://www.oxygenxml.com/rssBuildID.xml By the way, Oxyg...
by Radu
Wed Aug 15, 2012 9:48 am
Forum: DocBook
Topic: Getting images to work in DB epub ANT transformation
Replies: 1
Views: 2863

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: 3038

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: 5169

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: 3560

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: 5169

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: 3560

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: 1972

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...