Search found 2855 matches

by adrian
Tue Oct 19, 2010 10:35 am
Forum: General XML Questions
Topic: match data to schema
Replies: 11
Views: 6707

Re: match data to schema

Hello, This is a manual process in Oxygen. You can either: 1. Import the Excel file in Oxygen(File -> Import -> MS Excel File). You can adjust the element names for rows and columns under "Change labels". Afterwards you can process the imported XML file either manually in Text or Grid mode...
by adrian
Mon Oct 18, 2010 9:48 am
Forum: Other Issues
Topic: Batch transformation
Replies: 4
Views: 3697

Re: Batch transformation

We already have this feature request on our issue tracking tool. I've increased its priority. Hopefully this will be implemented in one of the 12.x minor versions.

Regards,
Adrian
by adrian
Fri Oct 15, 2010 5:26 pm
Forum: Common Problems
Topic: batch XSLT messages
Replies: 3
Views: 2408

Re: batch XSLT messages

Greg, I'm afraid Oxygen doesn't provide an option for this. Maybe you can find something in the configuration file of the Saxon-PE/EE to redirect the xsl:message output to a file. Another solution would be to configure the XSLT processor as a custom engine(Options -> Preferences -> XML -> XSLT-FO-XQ...
by adrian
Fri Oct 15, 2010 5:06 pm
Forum: Other Issues
Topic: Batch transformation
Replies: 4
Views: 3697

Re: Batch transformation

Hello, The Project view is the only location where batch transformations can be used in Oxygen right now(v12.0). A solution for frequent transformations of the same set of files is to create a logical folder in the project(contextual menu -> New -> Logical Folder) and in that folder add all the file...
by adrian
Fri Oct 15, 2010 4:13 pm
Forum: Common Problems
Topic: batch XSLT messages
Replies: 3
Views: 2408

Re: batch XSLT messages

Hello, It's a bug. The Messages pane was meant for debugging/transforming one stylesheet at a time. When batch transformations were introduced this pane was overlooked. As a result the Messages pane is cleared before running each of the batch transformations. I've added this to our issue tracking to...
by adrian
Fri Oct 15, 2010 2:18 pm
Forum: Common Problems
Topic: Surround every line in text with particular tag
Replies: 2
Views: 2785

Re: Surround every line in text with particular tag

Hello, You can do this in Oxygen from the Find/Replace dialog(CTRL+F). This is a find/replace regular expression solution. In the editor select the lines of text you want to process, invoke the Find/Replace dialog(CTRL+F) and switch the Scope to Only selected lines . In the "Text to find" ...
by adrian
Fri Oct 15, 2010 12:31 pm
Forum: XSLT and FOP
Topic: Output directory with XT custom engine...
Replies: 6
Views: 2470

Re: Output directory with XT custom engine...

It's probably generating the output in the current folder(whichever that may be). This means there's still something wrong in the command line configuration. Did you use ${out} as the third argument after the Java class name(Driver)? Also, use quotes to make sure the arguments don't get mixed up whe...
by adrian
Thu Oct 14, 2010 5:17 pm
Forum: Common Problems
Topic: Lost my framework!
Replies: 1
Views: 1003

Re: Lost my framework!

Hello, If you have modified files from one of the default Oxygen frameworks then I'm afraid the modifications are lost now as a result of the uninstall/upgrade procedure. If you have added new files to the frameworks folder then they are preserved even after uninstalling. It is generally a good idea...
by adrian
Thu Oct 14, 2010 3:34 pm
Forum: Feature Request
Topic: command line xpath
Replies: 5
Views: 2924

Re: command line xpath

I'm sorry but this use case really doesn't fall in a category that we would consider common use case for Oxygen. However, you could develop an Oxygen plugin in Java that can do what you need, even keep an open port and excute given commands. The Oxygen plugins SDK(OxygenPluginsDevelopmentKit.zip) an...
by adrian
Thu Oct 14, 2010 12:00 pm
Forum: XSLT and FOP
Topic: Output directory with XT custom engine...
Replies: 6
Views: 2470

Re: Output directory with XT custom engine...

Hello, How did you configure XT in Oxygen? If you have configured it as a custom XSLT engine(Options -> Preferences -> XML -> XSLT-FO-XQuery -> Custom Engines), make sure you also specify the output(result) argument in its command line: ${out} e.g. java -cp xp.jar;xt20051206.jar com.jclark.xsl.sax.D...
by adrian
Thu Oct 14, 2010 10:53 am
Forum: XSLT and FOP
Topic: PROBLEMS USING JAVA INTO XSLT
Replies: 1
Views: 2502

Re: PROBLEMS USING JAVA INTO XSLT

Here's a quick guide to get you started. If you already have the stylesheet and Java code and just want to process the stylesheet in Oxygen, skip to step 3. 1. A simple XSLT example that calls a static java function, my.utils.io.LibFiles.moveFile(String src, String dst): <?xml version="1.0"...
by adrian
Thu Oct 14, 2010 9:53 am
Forum: XSLT and FOP
Topic: XSLT problem
Replies: 1
Views: 1098

Re: XSLT problem

Hello, Why can't the XSL be processed with other processors? Is Saxon-EE a prerequisite for your project? Or it simply didn't work when you attempted to use another(different stylesheet version)? Note that there are two versions of XSLT that Oxygen provides appropriate processors for: - XSLT 1.0 - S...
by adrian
Wed Oct 13, 2010 5:20 pm
Forum: Feature Request
Topic: command line xpath
Replies: 5
Views: 2924

Re: command line xpath

Hello, I'm afraid I do not see a common use case for the command line XPath feature request, so I don't see this being implemented. Also, the AppleEvent feature is even less likely to be implemented. This is a completely platform dependent feature while Oxygen is a cross-platform application. What a...
by adrian
Tue Oct 12, 2010 12:33 pm
Forum: XSLT and FOP
Topic: Saxon SQL Extension
Replies: 32
Views: 18122

Re: Saxon SQL Extension

Hi, You're using the old MySQL driver: <sql:connect driver="com.mysql.jdbc.Driver" Use the new one: <sql:connect driver="org.gjt.mm.mysql.Driver" Also, if you're still experiencing driver problems you may want to copy the driver jar(mysql-connector-java-5.1.13-bin.jar) to the lib...
by adrian
Tue Oct 12, 2010 11:17 am
Forum: Other Issues
Topic: Error On External Validation
Replies: 3
Views: 1870

Re: Error On External Validation

Hello, Oxygen XML Editor can't validate HTML since it's not XML-based, it's SGML. However, it can edit and validate XHTML. The DTD you are using for validation is the HTML 4.01 Transitional DTD, an SGML DTD which cannot be handled by Oxygen. Oxygen can only handle XML documents and XML DTDs/schemas....
by adrian
Fri Oct 08, 2010 4:32 pm
Forum: XSLT and FOP
Topic: Saxon SQL Extension
Replies: 32
Views: 18122

Re: Saxon SQL Extension

Hi, To what SQL server are you trying to connect? Are you using the appropriate driver? The namespace doesn't really matter but you have to bind it to the appropriate factory: <extensionElement namespace="http://saxon.sf.net/sql" factory="net.sf.saxon.option.sql.SQLElementFactory"...
by adrian
Fri Oct 08, 2010 2:31 pm
Forum: Common Problems
Topic: Wrong windows handle grabbed for 'Save As' dialog
Replies: 3
Views: 2214

Re: Wrong windows handle grabbed for 'Save As' dialog

We have fixed the two issues(grabby "Save As" dialog and automatic "Save As" on read-only files) in the current development stream. The bug fixes will be available in the next minor version of Oxygen, v12.1. Regarding the red color tab for modified files. I'm afraid this is consi...
by adrian
Fri Oct 08, 2010 1:53 pm
Forum: Common Problems
Topic: Oxygen.exe as default program on Windows 7
Replies: 8
Views: 5448

Re: Oxygen.exe as default program on Windows 7

We have had the version number in the launcher filename before(Oxygen 7.x and older) but it's rather messy looking and I believe it had some issues(at that time) when upgrading minor versions. A more reasonable solution would be for the installer to add Oxygen/Author to the list of programs found in...
by adrian
Fri Oct 08, 2010 12:38 pm
Forum: Common Problems
Topic: Oxygen.exe as default program on Windows 7
Replies: 8
Views: 5448

Re: Oxygen.exe as default program on Windows 7

Hello, Editing the registry is one way of working around the problem. I can confirm the registry keys found by ra0543. For Oxygen: HKEY_CLASSES_ROOT\Applications\oxygen.exe\shell\open\command For Author: HKEY_CLASSES_ROOT\Applications\author.exe\shell\open\command They are the same for both Windows ...
by adrian
Thu Oct 07, 2010 5:07 pm
Forum: Feature Request
Topic: DITA Map Manager view
Replies: 4
Views: 1953

Re: DITA Map Manager view

Hello, We have re-added the second toolbar row in the latest build of Oxygen 12.0, 2010100114. You can download it from our web site: http://www.oxygenxml.com/download.html The list of bug-fixes for this build can be found here: http://www.oxygenxml.com/build_history.html#2010100114 Let us know if y...
by adrian
Thu Oct 07, 2010 5:05 pm
Forum: Common Problems
Topic: Missing buttons in DITA Map Managers view
Replies: 5
Views: 2190

Re: Missing buttons in DITA Map Managers view

Hello, We have re-added the second toolbar row in the latest build of Oxygen 12.0, 2010100114. You can download it from our site: http://www.oxygenxml.com/download.html The list of bug-fixes for this build can be found here: http://www.oxygenxml.com/build_history.html#2010100114 Let us know if you e...
by adrian
Wed Oct 06, 2010 4:38 pm
Forum: Common Problems
Topic: java.lang.NullPointerException
Replies: 4
Views: 2595

Re: java.lang.NullPointerException

In the end this was a NPE issued by Saxon during the transformation.
We will attempt to reproduce the problem and forward it to the Saxon developer(s).

Regards,
Adrian
by adrian
Wed Oct 06, 2010 4:11 pm
Forum: Feature Request
Topic: XML Schema clean up tool
Replies: 14
Views: 13996

Re: XML Schema clean up tool

@csalsa:
Thank you for the feedback.

I've added your comments to our issue tracking tool and your use case will be taken under consideration when this feature gets implemented.

Regards,
Adrian
by adrian
Wed Oct 06, 2010 1:56 pm
Forum: Common Problems
Topic: Wrong windows handle grabbed for 'Save As' dialog
Replies: 3
Views: 2214

Re: Wrong windows handle grabbed for 'Save As' dialog

We are aware of the Open/'Save As' dialogs problem and have it logged to our bug tracking tool. I've increased its priority. I believe you have also stumbled upon another problem. Read only files shouldn't be attempted to be saved automatically when automatic save is enabled. There's nothing automat...
by adrian
Tue Oct 05, 2010 11:01 am
Forum: Other Issues
Topic: CSS opacity ignore in Eclipse Editor
Replies: 1
Views: 1104

Re: CSS opacity ignore in Eclipse Editor

Hello, If it's considered an error I'm afraid you won't be able to hide or ignore it in Oxygen. Only warnings can be ignored. This behaviour depends on the used CSS validator(default is CSS 2.1). You can adjust all the available CSS validation options in Window -> Preferences -> oXygen -> CSS Valida...
by adrian
Tue Oct 05, 2010 9:42 am
Forum: Common Problems
Topic: java.lang.NullPointerException
Replies: 4
Views: 2595

Re: java.lang.NullPointerException

Hello,

Please post the entire stack trace from the error or use the "Report problem" button to send us an error report when it occurs.

Regards,
Adrian
by adrian
Mon Oct 04, 2010 4:43 pm
Forum: Common Problems
Topic: Connection to MarkLogic Database
Replies: 11
Views: 4432

Re: Connection to MarkLogic Database

OK, so the WebDAV URL is http://localhost:8003 It doesn't matter that it's the admin user, it should work. Can you double check the authentication with that user and password in the admin page: http://localhost:8001 ? Also, could you go back to the admin page: http://localhost:8001 and configure the...
by adrian
Mon Oct 04, 2010 3:44 pm
Forum: Common Problems
Topic: Connection to MarkLogic Database
Replies: 11
Views: 4432

Re: Connection to MarkLogic Database

So it works in the web browser? You can browse through the files on the WebDAV server from the web browser? For browsing in 'Data Source Explorer' only the WebDAV server is relevant. Did you configure the WebDAV URL from the data source connection to point to http://localhost:8004 ? Can you browse t...
by adrian
Mon Oct 04, 2010 12:01 pm
Forum: Common Problems
Topic: Build number updated but date unchanged on download page
Replies: 3
Views: 2436

Re: Build number updated but date unchanged on download page

Hello, I understand your confusion but the release date refers to the original release date of that Oxygen version(12.0 in this case), not the release date of the current build. The build number in itself is a date/time-stamp(YYYYMMDDHH) so you can deduce the date from it: 2010 09 21 12 We'll discus...
by adrian
Fri Oct 01, 2010 11:29 am
Forum: Common Problems
Topic: Connection to MarkLogic Database
Replies: 11
Views: 4432

Re: Connection to MarkLogic Database

It is not mandatory but it's generally a good idea to have both the WebDAV and the XDBC host configuration to point to the same location in the database to avoid confusion. The XDBC host is used for XQuery transformations and debugging while the WebDAV host is used for browsing in the Data Source Ex...