Search found 42 matches

by sanGeoff
Thu Dec 18, 2014 1:22 am
Forum: SDK-API, Frameworks - Document Types
Topic: Custom URL Chooser Issue
Replies: 2
Views: 2146

Re: Custom URL Chooser Issue

Hum, looks like I was able to get it to work by casing the frame to a window and using the JAVA document modal. Not sure if it’s the correct way though.

Code: Select all

 new JDialog((Window)frame, "Searching", ModalityType.DOCUMENT_MODAL); 
by sanGeoff
Wed Dec 17, 2014 11:29 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Custom URL Chooser Issue
Replies: 2
Views: 2146

Custom URL Chooser Issue

Can someone help me troubleshoot my issue with a Custom URL chooser? I have created a custom URL chooser and it works for the most part when using the open URL or insert functions. If however I call the URL choosers from a properties editor (the thing that pops up when you click on an opening tag) i...
by sanGeoff
Fri Dec 12, 2014 9:08 pm
Forum: Feature Request
Topic: Slimmed down Standalone Installer?
Replies: 1
Views: 1989

Slimmed down Standalone Installer?

I can understand if its not feasible but I was just curious if its possible to customize the oXygen Author standalone installer (oxygenAuthor.exe). Or at least provide some parameters to the installer to tell it not to deploy some things. I know there is a portable version and a multi platform tar. ...
by sanGeoff
Mon Sep 08, 2014 8:35 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Detecting new file
Replies: 2
Views: 1669

Re: Detecting new file

But why make this difference between new files and existing files? Because in our current environment, editors know if a file is new or not based on the version history or if there are no tracked changes, then the entire file content is new and needs to be reviewed. Its kinda silly for the entire d...
by sanGeoff
Fri Sep 05, 2014 9:22 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Detecting new file
Replies: 2
Views: 1669

Detecting new file

Is it possible to detect when a file was just created from a template? I supposes for unsaved files the title would always be Untitled# and I can use isNewDocument(). But what about documents just created from a template using the DITA Map > insert > New Topic ? What I am trying to do is always enab...
by sanGeoff
Wed Aug 27, 2014 1:55 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: DVFactoryException
Replies: 5
Views: 2839

Re: DVFactoryException

Nevermind, figured it out. When setting up my plugin project I includes a third-party sdk jar that i eventually need. Turns out it has a copy of xerces buried inside its own jar (doh). Thanks again, I should have caught that sooner.
by sanGeoff
Tue Aug 26, 2014 8:33 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DVFactoryException
Replies: 5
Views: 2839

Re: DVFactoryException

I don't have any framework extensions. I am just trying to create a standalone plugin, not a framework extension. I tried with an out of the box install of oxygen with no install changes and deleted the oxygen appdata settings folder. Same error with when trying to use the insertXMLFragment method i...
by sanGeoff
Mon Aug 25, 2014 9:15 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Set prolog revised date on save?
Replies: 4
Views: 2659

Re: Set prolog revised date on save?

Thanks for the reply, that makes sense now that you explain it. Yeah I figured the AuthorListener would be called often. If I did that, I would have had an if(!setOnce) or something so it only sets it once.
by sanGeoff
Mon Aug 25, 2014 6:35 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DVFactoryException
Replies: 5
Views: 2839

Re: DVFactoryException

It's giving me the error with the default dependency, I just temporarily excluded it and used the one in the oxygen lib folder to see if it might be the issue or something. I noticed the xercesImpl.jar that's in the oxygen lib folder was slightly different than the one in the maven include (5/5/14 v...
by sanGeoff
Thu Aug 21, 2014 11:37 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DVFactoryException
Replies: 5
Views: 2839

DVFactoryException

Oxygen Author 16.0.0, Eclipse Kepler SP2, jdk1.7.0_67 I can't seem to get the oxygen SDK AuthorDocumentController.insertXMLFragment method to work. Every time I try and call it I get the following exception. I have tried using the Maven included oxygen-xercesImpl-16.0.0.jar by default in the plugin ...
by sanGeoff
Thu Aug 21, 2014 6:45 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Set prolog revised date on save?
Replies: 4
Views: 2659

Re: Set prolog revised date on save?

Ah,, exactly what I needed, thank you so much. I see that now in the the FAQ of the Developer Guide, should have looked harder first. Looks like I need it both ways though, since closing the application or closing the file seems to trigger the save action on the AWT thread. if(! SwingUtilities.isEve...
by sanGeoff
Thu Aug 21, 2014 1:23 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Set prolog revised date on save?
Replies: 4
Views: 2659

Set prolog revised date on save?

Is it possible to get Oxygen to update the revised date on a DITA document when it's saved? I tried updating the attribute during a editorAboutToBeSavedVeto(), EditorListener event, but it throws a java.lang.Error: Fire should be on the AWT thread. error.