Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The VidiCore Adobe Extension Theme runs as a serverless one-page application. The latest compiled version can be found here: https://vidispine.github.io/adobe-extension-theme link. This version can be run towards any VidiCore system.

...

To use the Github-hosted application towards your VidiCore system, the following CORS configuration must be added in VidiCore. This can be done in the console of your choice or via Postman.

PUT /API/configuration/cors

Code Block
languagexml
 <CORSConfigurationDocument xmlns="http://xml.vidispine.com/schema/vidispine">
 <entry>
  <request>
   <origin>https://vidispine.github.io/adobe-extension-theme</origin>
  </request>
  <response>
   <allowOrigin>https://vidispine.github.io/adobe-extension-theme</allowOrigin>
   <allowMethods>OPTIONS,GET,HEAD,POST,PUT,DELETE</allowMethods>
   <allowHeaders>accept,content-type,authorization,index,size,runas</allowHeaders>
   <allowMaxAge>600</allowMaxAge>
 </response>
</entry>

...

The VidiCore Admin Tool source code can be found on GitHub: https://github.com/vidispine/adobe-extension-theme

Access Denied or no GitHub account?

...

Requirements to build the extension

Adobe ZXPSignCMD tool - https://github.com/Adobe-CEP/CEP-Resources/tree/master/ZXPSignCMD - for signing certificate and building ZXP

You can run `ZXPSignCmd

Code Block
ZXPSignCmd -selfSignedCert <countryCode> <stateOrProvince> <organization> <commonName> <password> <outputPath.

...

p12>

command to generate certifate for your project.

And to build it run ``

Code Block
ZXPSignCmd -sign <directoryName> <name>`date +%Y%m%d-%H%M`.zxp <outputPath.p12 <password>

...

How to build the extension

...

Extensions can be installed via zxp installers. One of the most popular zxp installers is aescripts + eaplugins - https://aescripts.com/learn/zxp-installer/ . All zxp extensions must contain certificates and can be build by ZXPSignCMD tool.

...