def get_license_title(self, experiment):
     from tardis.tardis_portal.publish.provider.schemarifcsprovider import SchemaRifCsProvider
     srp = SchemaRifCsProvider()        
     
     if srp.get_license_uri(experiment):
         return srp.get_license_title(experiment)
     else:
         return None
 def get_rights(self, experiment):
     from tardis.tardis_portal.publish.provider.schemarifcsprovider import SchemaRifCsProvider
     srp = SchemaRifCsProvider()        
     if srp.get_license_uri(experiment):
         return None
     return [('This information is supplied on the condition that the '
             'primary investigators are credited in any publications '
             'that use the data.')]
 def get_related_info_list(self, experiment):
     from tardis.tardis_portal.publish.provider.schemarifcsprovider import SchemaRifCsProvider
     srp = SchemaRifCsProvider()   
     return srp.get_related_info_list(experiment)