Changeset 37231


Ignore:
Timestamp:
2023-01-31T22:30:01+13:00 (15 months ago)
Author:
davidb
Message:

Overall improvements to collection-specific scripts

Location:
gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/BUILDCOL.sh

    r37118 r37231  
    2828echo
    2929
     30
     31
     32echo ""
     33echo "****"
     34echo "****"
     35echo "Before running ./ACTIVATE.sh consider whether you want/need to ingest the"
     36echo "OpenAnnotations into the Simple Annotation Server:"
     37echo "    ./SUBMIT-ALL-OPENANNOTATION-LISTS.sh"
     38echo ""
     39echo "And then inddex them for Mirador3 within document searching:"
     40echo "    ./INDEX-ALL-IIIF-MANIFESTS.sh"
     41echo "****"
     42echo "****"
     43echo ""
     44
  • gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/IMPORT.sh

    r37118 r37231  
    2929
    3030
    31 
     31echo ""
     32echo "****"
     33echo "****"
     34echo "Before running ./BUILDCOL.sh consider whether you want to 'hard-reset' "
     35echo "the triplestore:"
     36echo "    pushd $GSDL3SRCHOME"
     37echo "    ./RESET-ANNOTATION-STORE.sh"
     38echo "    popd"
     39echo "****"
     40echo "****"
     41echo ""
  • gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/INDEX-IIIF-MANIFEST.sh

    r37164 r37231  
    4141echo "  $download_url"
    4242echo ""
    43 curl "$download_url" | egrep -v "^\\s*$" > tmp/doc-openannotation--with-otherContent.json
     43curl "$download_url" | egrep -v "^\\s*$" > tmp/doc-openannotation--with-otherContent--pid$$.json
    4444
    4545
    46 iuri="$gs_library_url/sites/intermuse/collect/$col/tmp/doc-openannotation--with-otherContent.json"
     46iuri="$gs_library_url/sites/intermuse/collect/$col/tmp/doc-openannotation--with-otherContent--pid$$.json"
    4747
    4848internal_url_base="http://localhost:4343/simpleAnnotationStore"
     
    5555curl -X POST -d "uri=${iuri}" "$post_url"
    5656
    57 #if [ $? = 0 ] ; then
    58 #    /bin/rm tmp/doc-openannotation--with-otherContent.json
    59 #fi
     57if [ $? = 0 ] ; then
     58    /bin/rm tmp/doc-openannotation--with-otherContent--pid$$.json
     59fi
    6060
    6161echo ""
  • gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/SUBMIT-OPENANNOTATION-LIST.sh

    r37124 r37231  
    44
    55
    6 iuri_prefix=http://localhost:4343/greenstone3/library/sites/intermuse/collect/$col/index/assoc/
     6#iuri_prefix=http://localhost:4343/greenstone3/library/sites/intermuse/collect/$col/index/assoc/
     7iuri_prefix=$gs_library_url/sites/$site/collect/$col/index/assoc/
    78
    89ifilename=${1:-archives/HASH012c.dir/openannotation-list.json}
     
    1314
    1415
    15 internal_url_base="http://localhost:4343/simpleAnnotationStore/annotation"
     16#internal_url_base="http://localhost:4343/simpleAnnotationStore/annotation"
     17internal_url_base="http://localhost:$gs_http_port/simpleAnnotationStore/annotation"
    1618
    1719post_url="${internal_url_base}/populate"
Note: See TracChangeset for help on using the changeset viewer.