Skip to content
Guillaume Prevost edited this page Nov 18, 2013 · 1 revision
  1. A myTardis instance has to be set up and configured.

  2. Copy the filter flexstation.py into the filter folder of the myTardis instance (typically project-name/tardis/tardis-portal/filters)

  3. Register the filter to the myTardis instance by adding the following code in your the settings.py file:

	POST_SAVE_FILTERS = [
		("tardis.tardis_portal.filters.flexstation.make_filter",
		["FLEXSTATION", "http://rmit.edu.au/flexstation"]),  Flexstation III filter
	]
  1. Make sure the middleware classes for filters initialisation is enabled by adding this line into the settings.py file:
	MIDDLEWARE_CLASSES += ('tardis.tardis_portal.filters.FilterInitMiddleware',)
  1. Restart your myTardis instance (stop and start myTardis)

  2. Metadata should be automatically extracted when uploading a PDA file to the myTardis.

Clone this wiki locally