Changeset 37274
- Timestamp:
- 2023-02-04T23:12:06+13:00 (8 months ago)
- Location:
- gs2-extensions/apache-jena/trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
gs2-extensions/apache-jena/trunk/src/CASCADE-MAKE.sh
r37272 r37274 46 46 cd web-ext2-js && ./INSTALL.sh && cd .. 47 47 48 ./INSTALL-FUSEKI -WAR.sh48 ./INSTALL-FUSEKI3-WAR.sh 49 49 50 50 cat NOTES.txt -
gs2-extensions/apache-jena/trunk/src/INSTALL-FUSEKI3-WAR.sh
r37270 r37274 48 48 49 49 echo "" 50 echo "Testing to see if /greenstone dataset exists already (ping)" 51 gs-triplestore-dataset-ping3 /greenstone 50 52 53 if [ $? != 0 ] ; then 54 # Did not find dataset 55 echo "" >&2 56 echo "Warning: Did not find Fuseki dataset /greenstone" >&2 57 echo "Could be the dataset doesn't exist, or because the server isn't running" >&2 58 echo "" >&2 59 60 echo -n "Do you want to create /greenstone? [y/n]: " 61 read create_dataset 62 63 if [ "x$create_dataset" != "x" ] ; then 64 if [ "$create_dataset" = "y" ] || [ "$create_dataset" = "Y" ] ; then 65 #echo "Run the following:" 66 #echo " " gs-triplestore-dataset-create3 /greenstone 67 echo "Creating the /greenstone dataset" 68 gs-triplestore-dataset-create3 /greenstone 69 fi 70 fi 71 72 fi 73 74 echo "" 75 -
gs2-extensions/apache-jena/trunk/src/packages/CASCADE-MAKE.sh
r36761 r37274 8 8 source ../cascade-make/lib/cascade-lib.bash GEXT_JENA .. $* 9 9 10 for d in OPENSSL RUBY FUSEKI FUSEKI3 ; do 10 #for d in OPENSSL RUBY FUSEKI FUSEKI3 ; do 11 for d in OPENSSL RUBY FUSEKI3 ; do 11 12 echo " Running CASCADE-MAKE/$d.sh" 12 13 -
gs2-extensions/apache-jena/trunk/src/src3/gs-triplestore-dataset-create3
r37271 r37274 18 18 19 19 20 wget -O - --post-data="dbName=${dataset_name}&dbType=${dataset_type}" "http://localhost:$port/ /fuseki3/$/datasets"20 wget -O - --post-data="dbName=${dataset_name}&dbType=${dataset_type}" "http://localhost:$port/fuseki3/$/datasets" -
gs2-extensions/apache-jena/trunk/src/src3/gs-triplestore-dataset-delete3
r37271 r37274 20 20 export PATH=/usr/bin:$PATH 21 21 22 wget -O - --method=DELETE "http://localhost:$port/ /fuseki3/$/datasets/${dataset_name}"22 wget -O - --method=DELETE "http://localhost:$port/fuseki3/$/datasets/${dataset_name}" 23 23 24 24
Note:
See TracChangeset
for help on using the changeset viewer.