Skip to content

StefLinde/CMDI-Maker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CMDI-Maker

A tool for easily creating XML files on the basis of handsome forms.

Available on: http://cmdi-maker.uni-koeln.de

Build instructions

  1. To build CMDI Maker using gulp, make sure to have gulp and all packages that are required in the gulpfile installed and ready.
  2. Configure gulpfile.js so that environment scripts of the environments you want to provide with this CMDI Maker build are added to the array environment_scripts and environment css files to environment_stylesheets. These files will be added to the index.html as well as to cmdi-maker.appcache under the CACHE section, so that they are cached and available offline.
  3. Then just run the default task in the gulpfile.js (usually done by typing "gulp" in the npm command line")
  4. After that, provide all environment files for CMDI Maker. They should be put in the same directory as the CMDI Maker build. Of course they must be exactly where you have specified them in Step 2.

When deploying on a server, all kinds of caching must be disabled. Otherwise, the update mechanism may not work correctly. This is done by adding the following headers to all HTTP responses:

  • Expires: 0
  • Pragma: no-cache
  • Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0

Notice: It is not recommended to use Cache-Control: no-store, since this would prevent Firefox from storing the App in the appcache at all and in the console it says:

No ETag header must be present!

In Apache Web Server, this is done by adding these commands:

  • FileETag None
  • Header unset ETag

Make sure, that appcache files are served with the correct mime type. For example, to serve this mime-type in Apache, add this line to your config file:

  • AddType text/cache-manifest .appcache

There is a support website for CMDI Maker, that is available in the repository: https://github.com/cceh/CMDI-Maker-Help-Pages Make sure to include this website in a subfolder of the deployed CMDI Maker instance, called "help" or remove the links to these help pages from the source code of CMDI Maker.

About

A tool for easily creating XML files on the basis of handsome forms.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.9%
  • Other 1.1%