flowchart TD
A[Probleme mit dem Pathbuilder] -->B(Kann keinen Pfad hinzufügen)
B --> C{Ontologie geladen?}
C -->|Ja| D[Robert fragen]
C -->|Nein| E[Ontologie hinzufügen /admin/config/wisski/ontology]
E --> F[Reasoner laufen lassen /admin/config/wisski/salz/adapter/default ]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| drush sql-query "UPDATE key_value SET value='i:8013;' WHERE collection = 'system.schema' AND name = 'wisski_core';" |
WissKI ontology import and reasoning only supports a reduced OWL DL 1 RDF/XML notation.
<rdf:RDF>
xml:base="http://example.org/ontology/"
xmlns:ontology="http://example.org/ontology/"
xmlns:otherontology="http://another-ontology.com/"
xmlns:contents="http://example.org/contents/"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # get into the container | |
| apt-get install -y libxslt-dev | |
| docker-php-ext-install xsl | |
| # restart the container | |
| # or add the lines to the Dockerfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # $SERVER_URL=http://http://example.com/rdf4j-server/ | |
| # $REPO_ID=example-repo | |
| # curl -X PUT -H "Content-Type: text/turtle" --data-binary @repo-config.ttl $SERVER_URL/repositories/$REPO_ID | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | |
| @prefix rep: <http://www.openrdf.org/config/repository#>. | |
| @prefix sr: <http://www.openrdf.org/config/repository/sail#>. | |
| @prefix sail: <http://www.openrdf.org/config/sail#>. | |
| @prefix ms: <http://www.openrdf.org/config/sail/memory#>. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Replace <namespace> with your namespace. | |
| curl -X POST "http://localhost:9999/bigdata/namespace/<namespace>/sparql?GETSTMTS&includeInferred=false" > data.nq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Repairs corrupt Solr index | |
| java -cp /opt/solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-core-8.11.1.jar -ea:org.apache.lucene... org.apache.lucene.index.CheckIndex /var/solr/data/objektkatalogneu/data/index -exorcise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SELECT SQL STATEMENT (SAVE RESULT) | |
| SELECT t1.eid | |
| FROM wisski_salz_id2uri t1 | |
| INNER JOIN ( | |
| SELECT uri, count(eid), adapter_id, rid | |
| FROM wisski_salz_id2uri | |
| GROUP BY uri, adapter_id | |
| HAVING | |
| COUNT(eid) > 1 | |
| AND adapter_id = "boehler_backend") AS t2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <server> | |
| <url>localhost</url> | |
| <database>DATABASE_NAME</database> | |
| <port>3306</port> | |
| <user>DATABASE_USER</user> | |
| <password>DATABASE_PASSWORD</password> | |
| <table> | |
| <select>*</select> | |
| <name>TABLE_NAME_IN_DATABASE</name> | |
| <append></append> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ($this->batchStateStaticRevisions) { | |
| $form['actions']['eraseBatch'] = [ | |
| '#type' => 'submit', | |
| '#value' => $this->t('Reset batch state'), | |
| '#button_type' => 'danger', | |
| '#submit' => [[$this->configFactory->getEditable(static::INDIVIDUALS_IN_BATCH), | |
| 'delete', | |
| ], | |
| ], | |
| ]; |
NewerOlder