Search found 491 matches

by mihaela
Mon Dec 19, 2011 11:31 am
Forum: Feature Request
Topic: text-align : justify ?
Replies: 4
Views: 5820

Re: text-align : justify ?

Hello Vincent,

Unfortunately we have no plans on the short-term to support this feature.
We have added your request in our internal issue tracker and we will notify you when the justified rendering of the text in Author mode will be available.

Best regards,
Mihaela
by mihaela
Fri Dec 16, 2011 4:10 pm
Forum: Other Issues
Topic: Changing Default Attribute Values
Replies: 4
Views: 2487

Re: Changing Default Attribute Values

Hi Rob, oXygen uses DITA Open Toolkit to process DITA documents. The DTDs and XSL stylesheets from the DITA Open Toolkit are packed in the oXygen distribution, and you can found them inside the [Oxygen-install-folder]/frameworks/dita/DITA-OT folder. You can change the default value of the placement ...
by mihaela
Fri Dec 16, 2011 1:16 pm
Forum: Feature Request
Topic: text-align : justify ?
Replies: 4
Views: 5820

Re: text-align : justify ?

Hi Vincent, The fact that we don't support the value justify of the text-align CSS property means that the text is not rendered as justified in the Author mode, but when you transform the documents the property is taken into account and it is applied on the output (if the transformation engine suppo...
by mihaela
Thu Dec 01, 2011 5:28 pm
Forum: Feature Request
Topic: mobi Support
Replies: 2
Views: 2198

Re: mobi Support

Hi,

For the moment there are no plans for supporting .mobi files in oXygen, we only support zip archives (ePub's are actually zip files).

Regards,
Mihaela
by mihaela
Fri Nov 25, 2011 3:21 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Image loading in the editor from the server
Replies: 7
Views: 4625

Re: Image loading in the editor from the server

Hi Maxim,

See your answer here.

Regards,
Mihaela
by mihaela
Fri Nov 25, 2011 3:18 pm
Forum: Common Problems
Topic: CSS Content through StylesFilter
Replies: 10
Views: 5036

Re: CSS Content through StylesFilter

The Styles.KEY_PLACEHOLDER_CONTENT refers to the placeholder-content CSS property, that allows you to decide what content should be displayed in Author for an empty element. If you want to control the content of the element you have to use Styles.KEY_MIXED_CONTENT property key: public Styles filter ...
by mihaela
Wed Nov 23, 2011 6:03 pm
Forum: Other Issues
Topic: Node selection listener
Replies: 5
Views: 2887

Re: Node selection listener

Hi Maxim,

If you just want to find the node at caret position:

Code: Select all


int caretOffset = authorAccess.getEditorAccess().getCaretOffset();
AuthorNode nodeAtCaret = authorAccess.getDocumentController().
getNodeAtOffset(caretOffset);
Regards,
Mihaela
by mihaela
Wed Nov 23, 2011 4:50 pm
Forum: Common Problems
Topic: Global Variables
Replies: 1
Views: 1696

Re: Global Variables

Hi, oXygen supports the default DITA mechanism for reusing content fragments in DITA documents. Read the Reusing Content topic from our online documentation to find how you can create and use DITA reusable components from oXygen: http://www.oxygenxml.com/doc/ug-editor/topics/dita-reusing-content.htm...
by mihaela
Wed Nov 23, 2011 2:13 pm
Forum: Other Issues
Topic: Node selection listener
Replies: 5
Views: 2887

Re: Node selection listener

Hi Maxim, You can add an AuthorCaretListener to the Author Editor Access and find the selected node when the caret position is updated: authorAccess.getEditorAccess().addAuthorCaretListener(caretListener); To find if there is a selection in the Author page: boolean hasSelection = authorAccess.getEdi...
by mihaela
Tue Nov 22, 2011 3:41 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: List of attributes for a node
Replies: 2
Views: 2612

Re: List of attributes for a node

Hi Maxim, To find all the possible attributes for a node you have to get the WhatAttributesCanGoHereContext from the document schema manager and then ask the schema manager what attributes are available in this context. The following code sample list the names of all attributes available for the ele...
by mihaela
Fri Nov 18, 2011 3:18 pm
Forum: Other Issues
Topic: modifying text content via API
Replies: 1
Views: 1321

Re: modifying text content via API

Hi Tim, To change the content of the AuthorNodes you can use the AuthorDocumentController, which provides methods for modifying the Author document: AuthorDocumentController controller = authorAccess.getDocumentController(); To replace the text content of a node you can first delete this content by ...