Selaa lähdekoodia

Remove unused methods.

Stefano Cossu 7 vuotta sitten
vanhempi
commit
d49eb61e76
2 muutettua tiedostoa jossa 0 lisäystä ja 31 poistoa
  1. 0 15
      lakesuperior/store/ldp_rs/rsrc_centric_layout.py
  2. 0 16
      lsup-admin

+ 0 - 15
lakesuperior/store/ldp_rs/rsrc_centric_layout.py

@@ -534,21 +534,6 @@ class RsrcCentricLayout:
         return '{}/{}/{}'.format(uid, VERS_CONT_LABEL, ver_uid)
 
 
-    def clear_smt(self, uid):
-        '''
-        This is an ugly way to deal with lenient SPARQL update statements
-        that may insert server-managed triples into a user graph.
-
-        @TODO Deprecate when a solution to provide a sanitized SPARQL update
-        sring is found.
-        '''
-        gr = self.ds.graph(nsc['fcmain'][uid])
-        for p in srv_mgd_predicates:
-            gr.remove((None, p, None))
-        for t in srv_mgd_types:
-            gr.remove((None, RDF.type, t))
-
-
     def uri_to_uid(self, uri):
         '''
         Convert an internal URI to a UID.

+ 0 - 16
lsup-admin

@@ -185,28 +185,12 @@ def migrate(src, dest, start, list_file, zero_binaries, skip_errors):
     FCREPO_CONFIG_DIR="{}/etc" ./fcrepo
 
     Make sure that the default port is not being used by another repository.
-    '''.format(dest))
-
-
-@click.command()
-@click.argument('src')
-@click.argument('dest')
-def load(src, dest):
-    '''
-    [STUB] Load serialized repository data.
-
-    Load serialized data from a filesystem location into a Fedora repository.
-    The Fedora repo can be LAKEsuperior or another compatible implementation.
-    '''
-    pass
 
 
 admin.add_command(bootstrap)
 admin.add_command(check_fixity)
 admin.add_command(check_refint)
 admin.add_command(cleanup)
-admin.add_command(copy)
-admin.add_command(load)
 admin.add_command(migrate)
 admin.add_command(stats)