Is there support for synchronizing styles for Oxygen?

I don't see anything that looks like it, but I thought I should ask.

Is there existing support for synchronizing css from the server to Oxygen?

Or has anyone implemented support and if so, what did you do?



On second thought.
[edited by: Kendall Shaw at 9:53 PM (GMT 1) on 4 Aug 2022]
emoji
Parents Reply Children
  • Hi Ann,

    We install Oxygen XML Author and Tridion Docs client programs with the following batch command.

    @echo off
    :: Installation batch command for Oxygen XML Author and SDL Content Manager client programs
    ::
    :: === IMPORTANT ===
    :: This batch command must be run as Administrator.
    :: =================
    ::
    :: How to use:
    :: 1. Right-click on this batch file and select the [Run as administrator] from the pop-up menu.
    :: 2. When the Oxygen XML Author installer is launched, continue the installation by following messages displayed on the dialog boxes.
    :: 3. After the Oxygen XML Author installation, installers for following three SDL Content Manager client programs are launched consequently. Proceede installation for those programs by following messages displayed on the dialog box.
    :: (1) Authoring bridge (Oxygen connector)
    :: (2) Publication Manager
    :: (3) Content Importer
    :: 4. At last, when the "Press any key to continue..." message is displayed on the command window, hit any key.
    ::
    :: Note that Condition Manager, which is one of the SDL Content Manager client programs, is not installed by this batch command. Because, Condition Manager is for an system administrator only. If you are the system administrator of SDL Content Manager, install Condition Manager separately by executing its installer (i.e. 20190705.ConditionManager.14.0.3105.0.msi).

    echo Installing Oxygen XML Author and SDL Content Manager client programs ...
    echo.

    chdir %~dp0

    rem Launch Oxygen installer
    oxygenAuthor-64bit.exe

    rem Launch Oxygen connector installer
    20190705.AuthoringBridge.14.0.3105.0-oXygen-Connector.msi

    rem Launch Publication Manager installer
    20190705.PublicationManager.14.0.3105.0.msi

    rem Launch Content Importer installer
    20190705.ContentImporter.14.0.3105.0.msi

    set ox_install_folder="C:\Program Files\Oxygen XML Author 20"

    rem Change access priviledge for Oxygen installtion folder
    echo - Grant full access to the Oxygen installation folder
    echo y|cacls %ox_install_folder% /T /E /G %USERNAME%:F

    rem Set .XML file extension association with Oxygen XML Author
    set ox_install_path="C:\Program Files\Oxygen XML Author 20\oxygenAuthor20.1.exe"
    ftype xmlfile=%ox_install_path% "%%1"

    echo Oxygen and Authoring Bridge have been installed.

    pause
    exit /b

    Note that this code doesn't work properly if you are using Windows domain for user account management. In addition, use the code at your own risk.

    Regards,

    Naoki

    emoji
  • Thanks for that Naoki, I will review our installation files. 

    One last question, when you sync via syncinfo.xml are you syncing files to RWS trisoftdita framework or to your own custom framework?

    I can't see how to extend the RWS trisoftdita framework via Oxygen as this button is disabled.

    Thanks again,

    Ann

    emoji
  • Our SyncInfo.xml for the Oxygen customizations is as follows:

    <syncgroup>
    <syncfolder serverfolder="~/ClientConfig/Oxygen/" clientfolder="C:\Program Files\Oxygen XML Author 20\" />
    </syncgroup>

    We synchronize both dita and trisoftdita frameworks as shown the screenshot below.

    File Explorer window showing two folders named 'dita' and 'trisoftdita' within the directory path 'C: InfoShare Web Author ASP ClientConfig Oxygen frameworks'. Both folders have a 'Date modified' of '06012020 18:40' and are of type 'File folder'.

    Hope this helps you.

    Naoki

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 10:38 AM (GMT 0) on 29 Feb 2024]
  • Yes, that helps a lot. Thanks for being so generous with your knowledge Naoki, I really appreciate it.

    Regards,

    Ann

    emoji