Browse Source

Set handling "lenient" by default.

Stefano Cossu 7 years ago
parent
commit
1010cbea2d
2 changed files with 5 additions and 4 deletions
  1. 2 2
      lakesuperior/model/ldp_rs.py
  2. 3 2
      lakesuperior/model/ldpr.py

+ 2 - 2
lakesuperior/model/ldp_rs.py

@@ -14,11 +14,11 @@ class LdpRs(Ldpr):
     }
 
 
-    def __init__(self, uuid, repr_opts={}, handling='strict', **kwargs):
+    def __init__(self, uuid, repr_opts={}, handling='lenient', **kwargs):
         '''
         Extends Ldpr.__init__ by adding LDP-RS specific parameters.
 
-        @param handling (string) One of `strict` (the default), `lenient` or
+        @param handling (string) One of `strict`, `lenient` (the default) or
         `none`. `strict` raises an error if a server-managed term is in the
         graph. `lenient` removes all sever-managed triples encountered. `none`
         skips all server-managed checks. It is used for internal modifications.

+ 3 - 2
lakesuperior/model/ldpr.py

@@ -677,8 +677,9 @@ class Ldpr(metaclass=ABCMeta):
         '''
         Check whether server-managed terms are in a RDF payload.
         '''
-        if self.handling == 'none':
-            return
+        # @FIXME Need to be more consistent
+        if getattr(self, 'handling', 'none') == 'none':
+            return gr
 
         offending_subjects = set(gr.subjects()) & srv_mgd_subjects
         if offending_subjects: