Search found 17 matches

by lief.erickson
Thu Aug 06, 2020 9:03 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT configuration.properties file and New transformation scenarios
Replies: 5
Views: 1551

Re: DITA-OT configuration.properties file and New transformation scenarios

Hi Radu-- Thanks for confirming that there's been a change in DITA-OT and that Oxygen will need to be modified too. I removed my custom plugins. I moved "configuration.properties" to the \lib folder as you suggested. Then I restarted Oxygen. I ran the Integrator scenario. Still no luck. Bu...
by lief.erickson
Fri Jul 31, 2020 8:49 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT configuration.properties file and New transformation scenarios
Replies: 5
Views: 1551

Re: DITA-OT configuration.properties file and New transformation scenarios

I was already using an absolute path. I put a relative path in my example merely as that, an example. Using an absolute path and a relative path produce the same result. Restarting oXygen did not have any effect. When I attempted to use a relative path, it was to the DITA-OT installation directory, ...
by lief.erickson
Fri Jul 31, 2020 5:47 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA-OT configuration.properties file and New transformation scenarios
Replies: 5
Views: 1551

DITA-OT configuration.properties file and New transformation scenarios

oXygen 22.1.2020051804 DITA-OT 3.5.2 With DITA-OT one can use its "configuration.properties" file to add a path to where you store your plugins using pluginsdir . plugindirs = plugins;demo;../path/to/my/plugin/ This works. When I use the Run DITA-OT Integrator scenario I see that my plugin...
by lief.erickson
Mon Jun 27, 2016 5:23 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Add @scale attribute by default in Author mode
Replies: 3
Views: 2077

Re: Add @status attribute by default in Author mode

operation: ro.sync.ecss.extensions.commons.operations.ChangeAttributeOperation I wanted to add @status="changed" to any topic that has a descendant with @status="new" or @status="deleted" or @status="changed, and this was exactly the operation I needed. I can conf...
by lief.erickson
Mon Apr 11, 2016 3:15 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Trigger Author Action on save?
Replies: 15
Views: 6853

Re: Trigger Author Action on save?

Hi-- Yes, it's working. I meant to update this case with my actions.config and Author Action info. The XPath that Alex provided gave me exactly the solution I was looking for. I am not overwriting the existing <revised> but adding a new one. Alex, thank you! I provided this change to my coworker, an...
by lief.erickson
Tue Apr 05, 2016 2:55 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Trigger Author Action on save?
Replies: 15
Views: 6853

Re: Trigger Author Action on save?

Thank you very much, Frank & Alex. This is what I'm using: - id: add.revised - XPath condition: //*[contains(@class," topic/critdates ")] - Operation: ro.sync.ecss.extensions.commons.operations.InsertFragmentOperation - insertLocation: (//*[contains(@class," topic/critdates "...
by lief.erickson
Sun Apr 03, 2016 6:55 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Trigger Author Action on save?
Replies: 15
Views: 6853

Re: Trigger Author Action on save?

Hi Frank--

I'm looking to do the same as you -- automatically add <revised> to my <critdates>. What does your actions.config file look like?

-Lief
by lief.erickson
Thu Apr 09, 2015 9:40 pm
Forum: XML Schemas
Topic: Generate XML-Schema Documentation in DITA Format
Replies: 5
Views: 5563

Re: Generate XML-Schema Documentation in DITA Format

Please add my name to the list as someone interested in a feature like this.

-Lief
by lief.erickson
Fri Apr 03, 2015 10:39 pm
Forum: Other Issues
Topic: Automatic ID Generation
Replies: 7
Views: 5094

Re: Automatic ID Generation

Thanks for the answer, Radu. I'm not currently using a CMS, so I went with #1.
by lief.erickson
Thu Apr 02, 2015 10:45 pm
Forum: Other Issues
Topic: Automatic ID Generation
Replies: 7
Views: 5094

Re: Automatic ID Generation

When someone creates a new DITA reference file through File > New, I'd like to copy the automatically generated ID and reuse it in a couple of places so that some @conrefs resolve. This is what I'm currently doing, but the ${xpath_eval} is returning nothing. I'm fairly positive I have everything cor...
by lief.erickson
Mon Mar 16, 2015 6:08 pm
Forum: Feature Request
Topic: Be able to sort DITA Simple List Items
Replies: 5
Views: 3912

Re: Be able to sort DITA Simple List Items

That change did it. Thank you!
by lief.erickson
Fri Mar 13, 2015 8:28 pm
Forum: Feature Request
Topic: Be able to sort DITA Simple List Items
Replies: 5
Views: 3912

Re: Be able to sort DITA Simple List Items

Thanks for filing the feature request and, more immediately, the workaround, Alex. I've added an Author action as you've suggested, but when I select an <sl> element the action is not available. The action is grayed out on the toolbar (or not visible on the context menu). I've never created an Autho...
by lief.erickson
Fri Mar 13, 2015 6:14 am
Forum: Feature Request
Topic: Be able to sort DITA Simple List Items
Replies: 5
Views: 3912

Be able to sort DITA Simple List Items

Hello--

oXygen has to capability to sort ordered and unordered lists, but the <sl> / <sli> elements cannot be sorted. Can this functionality be added?

-Lief
by lief.erickson
Tue Mar 03, 2015 2:29 am
Forum: XSLT and FOP
Topic: DITA Metrics Report: need @conkeyref support
Replies: 10
Views: 7484

Re: DITA Metrics Report: need @conkeyref support

A message has been sent. Thanks, George.
by lief.erickson
Mon Mar 02, 2015 10:29 pm
Forum: XSLT and FOP
Topic: I want to omit addressLine1 if Address element attribute has
Replies: 2
Views: 2813

Re: I want to omit addressLine1 if Address element attribute

Since you know that you do not want AddressLine1 included in your output, in your XSLT change

Code: Select all

<xsl:for-each select="AddressLine1 | AddressLine2 | AddressLine3 | AddressLine4">
to

Code: Select all

<xsl:for-each select="AddressLine2 | AddressLine3 | AddressLine4">
-Lief
by lief.erickson
Mon Mar 02, 2015 1:26 am
Forum: XSLT and FOP
Topic: I do not want to display a comma after last element
Replies: 5
Views: 5697

Re: I do not want to display a comma after last element

The reason you're getting the extra comma is because of: <xsl:if test="AddressLine2"> <xsl:value-of select="AddressLine2"/> <xsl:text>, </xsl:text> </xsl:if> This says: For every AddressLine2, emit its value and then follow that with a comma and then a space. Repeat for each and ...
by lief.erickson
Sun Mar 01, 2015 7:50 pm
Forum: XSLT and FOP
Topic: DITA Metrics Report: need @conkeyref support
Replies: 10
Views: 7484

DITA Metrics Report: need @conkeyref support

Hello-- The DITA Metrics report provides a lot good information, but it's incomplete. It does not provide reuse statistics for any @conkeyref . I'd like to add support for that. (Even better would be if oXygen had default support for it. I know others would like to see it, too. http://www.oxygenxml....