Commit 3901e3e6 authored by Krzysztof Kutt's avatar Krzysztof Kutt
Browse files

small fixes

Showing with 4 additions and 4 deletions
+4 -4
......@@ -36,7 +36,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"@prefix dc: <http://purl.org/dc/elements/1.1/> .\n" .
"@prefix lokipage: <{$adres_wiki}> .\n" .
"@prefix lokievent: <{$adres_wiki}special:lokievent#> .\n" .
"@prefix lokiuser: <{$adres_wiki}user:> .";
"@prefix lokiuser: <{$adres_wiki}user:> .\n\n";
}
/**
......@@ -52,7 +52,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"\tprov:wasGeneratedBy lokievent:created_{$strona}.{$nowaRev} .\n" .
"lokievent:created_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tlokirel:comment \"{$komentarz}\"" .
"\tdc:description \"{$komentarz}\"" .
((count($linki) > 0) ?
(" ;\n\tprov:used " . implode(" ,\n\t\t", $linki) . " .\n\n") :
(" .\n\n"));
......@@ -72,7 +72,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
"\tprov:wasGeneratedBy lokievent:edited_{$strona}.{$nowaRev} .\n" .
"lokievent:edited_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tlokirel:comment \"{$komentarz}\" ;\n" .
"\tdc:description \"{$komentarz}\" ;\n" .
"\tprov:used " . implode(" ,\n\t\t", $linki) . " .\n\n";
}
......@@ -86,7 +86,7 @@ class action_plugin_prov_prov extends DokuWiki_Action_Plugin
return "lokievent:deleted_{$strona}.{$nowaRev} a prov:Activity ;\n" .
"\tprov:used lokipage:{$strona}.{$staraRev} ;\n" .
"\tprov:wasAssociatedWith {$autor} ;\n" .
"\tlokirel:comment \"{$komentarz}\" .\n\n";
"\tdc:description \"{$komentarz}\" .\n\n";
}
/**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment