def get_license_uri(self, experiment):
     from tardis.tardis_portal.publish.provider.schemarifcsprovider import SchemaRifCsProvider
     srp = SchemaRifCsProvider()        
     
     if srp.get_license_uri(experiment):
         return srp.get_license_uri(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.')]