- only 9 types of reference type
- optimized help svg's: secure_data svg and specs.svg - delet unneccesary information on home view
This commit is contained in:
parent
50d27c51c9
commit
ea6288fd0f
|
@ -138,10 +138,8 @@ class EditorController extends Controller
|
||||||
$referenceTypes = ["rdr-id", "doi", "handle", "isbn", "issn", "url", "urn"];
|
$referenceTypes = ["rdr-id", "doi", "handle", "isbn", "issn", "url", "urn"];
|
||||||
$referenceTypes = array_combine($referenceTypes, $referenceTypes);
|
$referenceTypes = array_combine($referenceTypes, $referenceTypes);
|
||||||
|
|
||||||
$relationTypes = ["IsCitedBy", "Cites", "IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
$relationTypes = ["IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
||||||
"HasMetadata", "IsMetadataFor", "IsNewVersionOf", "IsPreviousVersionOf", "IsPartOf", "HasPart", "IsReferencedBy",
|
"IsNewVersionOf", "IsPartOf", "HasPart", "Compiles", "IsVariantFormOf"];
|
||||||
"References", "IsDocumentedBy", "Documents", "IsCompiledBy", "Compiles", "IsVariantFormOf", "IsOriginalFormOf",
|
|
||||||
"IsIdenticalTo", "IsReviewedBy", "Reviews", "IsDerivedFrom", "IsSourceOf"];
|
|
||||||
$relationTypes = array_combine($relationTypes, $relationTypes);
|
$relationTypes = array_combine($relationTypes, $relationTypes);
|
||||||
|
|
||||||
return View::make(
|
return View::make(
|
||||||
|
|
|
@ -62,10 +62,8 @@ class IndexController extends Controller
|
||||||
$relatedIdentifierTypes = ["doi", "handle", "isbn", "issn", "url", "urn"];
|
$relatedIdentifierTypes = ["doi", "handle", "isbn", "issn", "url", "urn"];
|
||||||
$relatedIdentifierTypes = array_combine($relatedIdentifierTypes, $relatedIdentifierTypes);
|
$relatedIdentifierTypes = array_combine($relatedIdentifierTypes, $relatedIdentifierTypes);
|
||||||
|
|
||||||
$relationTypes = ["IsCitedBy", "Cites", "IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
$relationTypes = ["IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
||||||
"HasMetadata", "IsMetadataFor", "IsNewVersionOf", "IsPreviousVersionOf", "IsPartOf", "HasPart", "IsReferencedBy",
|
"IsNewVersionOf", "IsPartOf", "HasPart", "Compiles", "IsVariantFormOf"];
|
||||||
"References", "IsDocumentedBy", "Documents", "IsCompiledBy", "Compiles", "IsVariantFormOf", "IsOriginalFormOf",
|
|
||||||
"IsIdenticalTo", "IsReviewedBy", "Reviews", "IsDerivedFrom", "IsSourceOf"];
|
|
||||||
$relationTypes = array_combine($relationTypes, $relationTypes);
|
$relationTypes = array_combine($relationTypes, $relationTypes);
|
||||||
|
|
||||||
$titleTypes = ['Sub' => 'Sub', 'Alternative' => 'Alternative', 'Translated' => 'Translated', 'Other' => 'Other'];
|
$titleTypes = ['Sub' => 'Sub', 'Alternative' => 'Alternative', 'Translated' => 'Translated', 'Other' => 'Other'];
|
||||||
|
|
|
@ -64,8 +64,10 @@ class SubmitController extends Controller
|
||||||
$dataset = Dataset::findOrFail($id);
|
$dataset = Dataset::findOrFail($id);
|
||||||
$dataset->load('licenses', 'authors', 'contributors', 'titles', 'abstracts', 'files', 'coverage', 'subjects', 'references');
|
$dataset->load('licenses', 'authors', 'contributors', 'titles', 'abstracts', 'files', 'coverage', 'subjects', 'references');
|
||||||
|
|
||||||
$titleTypes = ['Main' => 'Main', 'Sub' => 'Sub', 'Alternative' => 'Alternative', 'Translated' => 'Translated', 'Other' => 'Other'];
|
$titleTypes = ['Main' => 'Main', 'Sub' => 'Sub', 'Alternative' => 'Alternative',
|
||||||
$descriptionTypes = ['Abstract' => 'Abstract', 'Methods' => 'Methods', 'Series_information' => 'Series_information',
|
'Translated' => 'Translated', 'Other' => 'Other'];
|
||||||
|
$descriptionTypes = ['Abstract' => 'Abstract', 'Methods' => 'Methods',
|
||||||
|
'Series_information' => 'Series_information',
|
||||||
'Technical_info' => 'Technical_info', 'Translated' => 'Translated', 'Other' => 'Other'];
|
'Technical_info' => 'Technical_info', 'Translated' => 'Translated', 'Other' => 'Other'];
|
||||||
$languages = DB::table('languages')
|
$languages = DB::table('languages')
|
||||||
->where('active', true)
|
->where('active', true)
|
||||||
|
@ -99,10 +101,8 @@ class SubmitController extends Controller
|
||||||
$referenceTypes = ["rdr-id", "doi", "handle", "isbn", "issn", "url", "urn"];
|
$referenceTypes = ["rdr-id", "doi", "handle", "isbn", "issn", "url", "urn"];
|
||||||
$referenceTypes = array_combine($referenceTypes, $referenceTypes);
|
$referenceTypes = array_combine($referenceTypes, $referenceTypes);
|
||||||
|
|
||||||
$relationTypes = ["IsCitedBy", "Cites", "IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
$relationTypes = ["IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
||||||
"HasMetadata", "IsMetadataFor", "IsNewVersionOf", "IsPreviousVersionOf", "IsPartOf", "HasPart", "IsReferencedBy",
|
"IsNewVersionOf", "IsPartOf", "HasPart", "Compiles", "IsVariantFormOf"];
|
||||||
"References", "IsDocumentedBy", "Documents", "IsCompiledBy", "Compiles", "IsVariantFormOf", "IsOriginalFormOf",
|
|
||||||
"IsIdenticalTo", "IsReviewedBy", "Reviews", "IsDerivedFrom", "IsSourceOf"];
|
|
||||||
$relationTypes = array_combine($relationTypes, $relationTypes);
|
$relationTypes = array_combine($relationTypes, $relationTypes);
|
||||||
|
|
||||||
return View::make(
|
return View::make(
|
||||||
|
|
|
@ -27,7 +27,8 @@ class CreateDocumentReferencesTable extends Migration
|
||||||
);
|
);
|
||||||
$table->enum(
|
$table->enum(
|
||||||
'relation',
|
'relation',
|
||||||
["IsCitedBy", "Cites", "IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues", "HasMetadata", "IsMetadataFor","IsNewVersionOf", "IsPreviousVersionOf", "IsPartOf", "HasPart", "IsReferencedBy", "References", "IsDocumentedBy", "Documents", "IsCompiledBy", "Compiles", "IsVariantFormOf", "IsOriginalFormOf", "IsIdenticalTo", "IsReviewedBy", "Reviews", "IsDerivedFrom", "IsSourceOf"]
|
["IsSupplementTo", "IsSupplementedBy", "IsContinuedBy", "Continues",
|
||||||
|
"IsNewVersionOf", "IsPartOf", "HasPart", "Compiles", "IsVariantFormOf"]
|
||||||
);
|
);
|
||||||
$table->string('value', 255);
|
$table->string('value', 255);
|
||||||
$table->string('label', 50);
|
$table->string('label', 50);
|
||||||
|
|
|
@ -1,107 +1,36 @@
|
||||||
<svg id="e8f68bdd-4984-4f2e-95b7-7fc8ec281257" data-name="Layer 1"
|
<svg id="e8f68bdd-4984-4f2e-95b7-7fc8ec281257" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="140" height="80" viewBox="0 0 918.14 765.54">
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
<defs/>
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink" width="130" height="80" viewBox="0 0 918.14 765.54">
|
<!--linkes Blatt-->
|
||||||
<defs>
|
<rect x="169" y="94.7" width="455" height="609.1" style="fill:#f2f2f2;stroke:#6b716f;stroke-width:1"/>
|
||||||
<linearGradient id="27aa7b70-b106-4a00-be67-693c8380e41d" x1="397.74" y1="717.25" x2="397.74" y2="86.11" gradientUnits="userSpaceOnUse">
|
<rect x="204.5" y="120" width="156.6" height="4.9" fill="#e0e0e0"/>
|
||||||
<stop offset="0" stop-color="gray" stop-opacity="0.25"/>
|
<rect x="204.5" y="142" width="156.6" height="4.9" fill="#00b0ff" opacity="0.7"/>
|
||||||
<stop offset="0.54" stop-color="gray" stop-opacity="0.12"/>
|
<rect opacity="0.8" x="204.5" y="170" width="93" height="4.9" fill="#6b716f"/>
|
||||||
<stop offset="1" stop-color="gray" stop-opacity="0.1"/>
|
<rect x="213.6" y="224.3" width="150.6" height="101.5" fill="#ffffff"/>
|
||||||
</linearGradient>
|
<rect fill="#f5f5f5" height="161.4" width="163.7" x="206.8" y="429.8"/>
|
||||||
<linearGradient id="46a816da-c484-41ec-8a6f-fbf14454d910" x1="288.88" y1="378.44" x2="288.88" y2="209.65" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect fill="#ffffff" height="101.5" width="150.6" x="213.6" y="440.8"/>
|
||||||
<linearGradient id="32b634d8-28f1-48d9-a868-f602a2cad942" x1="288.88" y1="328.29" x2="288.88" y2="223.1" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<!--rechtes Blatt-->
|
||||||
<clipPath id="7a4c6aff-0be0-461b-a111-b3ae1b8fbf73" transform="translate(-140.93 -67.23)">
|
<rect style="fill:#fefefe;stroke:#6b716f;stroke-width:1" height="455" transform="matrix(0.2,-1,1,0.2,-72.2,966.2)" width="609.1" x="359.4" y="247.3"/>
|
||||||
<rect id="8cc91f6d-19b0-43cc-9c18-2faa83ac34ba" data-name="<Rectangle>" x="354.51" y="291.55" width="150.6" height="101.52" fill="#fff"/>
|
<rect fill="#e0e0e0" height="4.9" transform="translate(-88.9,-196.9) rotate(11.2)" width="322.9" x="523.5" y="197.2"/>
|
||||||
</clipPath>
|
<rect x="433.4" y="650.7" width="322.9" height="4.9" transform="translate(-2.2,-170.7) rotate(11.2)" fill="#e0e0e0"/>
|
||||||
<linearGradient id="38f1cb81-8fac-4205-a0ff-a33ac00d354c" x1="288.88" y1="594.94" x2="288.88" y2="426.14" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect x="428.6" y="671.1" width="249.5" height="4.9" transform="translate(1,-162.2) rotate(11.2)" fill="#e0e0e0"/>
|
||||||
<linearGradient id="6fc01aaf-135e-403e-a209-43b2a4fe59f1" x1="288.88" y1="544.79" x2="288.88" y2="439.6" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect opacity="0.8" x="424.6" y="683.5" width="93" height="4.9" transform="translate(1.8,-145.9) rotate(11.2)" fill="#6b716f"/>
|
||||||
<clipPath id="79ce363a-d134-40e4-9f82-b96d04a36978" transform="translate(-140.93 -67.23)">
|
<rect opacity="0.8" x="511.4" y="208.1" width="161.4" height="4.9" transform="matrix(1,0.2,-0.2,1,-88.2,-180.2)" fill="#6b716f"/>
|
||||||
<rect id="5b44e697-61fe-43bd-9a58-5f3e41301748" data-name="<Rectangle>" x="354.51" y="508.05" width="150.6" height="101.52" fill="#fff"/>
|
<rect x="512.8" y="249.3" width="291.1" height="4.9" transform="translate(-79.2,-190.8) rotate(11.2)" fill="#e0e0e0"/>
|
||||||
</clipPath>
|
<rect opacity="0.7" x="509.5" y="255.4" width="70.9" height="4.9" transform="translate(-80.2,-168.5) rotate(11.2)" fill="#3ad29f"/>
|
||||||
<linearGradient id="54803c44-522d-4b9e-9a34-f1f7b43e8483" x1="671.57" y1="760.34" x2="671.57" y2="129.2" gradientTransform="translate(1109.43 -194.1) rotate(90)" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect x="501.6" y="307.6" width="322.9" height="4.9" transform="translate(-67.8,-190.5) rotate(11.2)" fill="#e0e0e0"/>
|
||||||
<linearGradient id="089a6a47-adaa-499b-aefb-cd6464b62fb8" x1="670.96" y1="553.63" x2="670.96" y2="387.28" gradientTransform="translate(1129.51 -168.41) rotate(90)" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect fill="#ffffff" height="162.7" transform="translate(-30.4,-186.1) rotate(11.2)" width="286.2" x="516.1" y="420.6"/>
|
||||||
<linearGradient id="fd8d88e0-7826-450d-9e0b-001d1be709c2" x1="637.66" y1="754.12" x2="637.66" y2="601.05" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect fill="#e0e0e0" height="4.9" transform="translate(-62.5,-188.9) rotate(11.2)" width="322.9" x="496.1" y="335.2"/>
|
||||||
<linearGradient id="8d1793c5-b76e-44e2-a52e-569460402331" x1="778.37" y1="673.86" x2="778.37" y2="569.13" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect x="547.9" y="424" width="35.5" height="118.6" transform="matrix(1,0.2,-0.2,1,-35.8,-168.2)" fill="#00b0ff"/>
|
||||||
<linearGradient id="4745700d-8097-45ff-9f71-625443fc4ad8" x1="778.37" y1="774.41" x2="778.37" y2="713.66" xlink:href="#27aa7b70-b106-4a00-be67-693c8380e41d"/>
|
<rect x="606.4" y="475.2" width="35.5" height="79.5" transform="matrix(1,0.2,-0.2,1,-28.6,-179)" fill="#3ad29f"/>
|
||||||
</defs>
|
<rect x="667.6" y="536.1" width="35.5" height="42.8" transform="matrix(1,0.2,-0.2,1,-21.5,-189.9)" fill="#6b716f"/>
|
||||||
<title>secure data</title>
|
<rect x="728" y="509.7" width="35.5" height="86.8" transform="matrix(1,0.2,-0.2,1,-22,-203.1)" fill="#fdd835"/>
|
||||||
<g opacity="0.5">
|
<!--Schloss-->
|
||||||
<rect x="162.9" y="86.11" width="469.69" height="631.14" fill="url(#27aa7b70-b106-4a00-be67-693c8380e41d)"/>
|
<path d="M 724.2 638.3 C 723.4 619.1 733.2 600.9 749.7 591 C 766.3 581.1 786.9 581.1 803.4 591 C 820 600.9 829.8 619.1 828.9 638.3 v 33.5 H 843.6 V 638.3 C 843.6 601.3 813.6 571.3 776.6 571.3 C 739.5 571.3 709.5 601.3 709.5 638.3 v 33.5 H 724.2 Z" transform="matrix(1,0,0,1,-140.9,-67.2)" fill="#6b716f"/>
|
||||||
</g>
|
<rect height="148.7" width="182.2" x="546.3" y="602.5" fill="#6b716f"/>
|
||||||
<rect x="169.02" y="94.67" width="455.01" height="609.12" fill="#f2f2f2"/>
|
<rect height="90.1" width="182.2" x="546.3" y="631.8" fill="#00b0ff"/>
|
||||||
<rect x="204.49" y="120.36" width="156.56" height="4.89" fill="#e0e0e0"/>
|
<path opacity="0.2" d="M 789.9 729.4 a 11.5 11.5 0 1 0 -19.9 7.9 v 24.6 a 8.4 8.4 0 1 0 16.8 0 V 737.3 A 11.5 11.5 0 0 0 789.9 729.4 Z" transform="translate(-140.9,-67.2)"/>
|
||||||
<rect x="204.49" y="142.37" width="156.56" height="4.89" fill="#00b0ff" opacity="0.7"/>
|
<!--Text-->
|
||||||
<rect x="384.29" y="120.36" width="156.56" height="4.89" fill="#e0e0e0"/>
|
<text transform="matrix(1,0.2,-0.2,1,46.9,-88.5)" font-size="70" textLength="200" fill="#000000" x="438.3" y="328.9">
|
||||||
<rect x="408.75" y="259.8" width="156.56" height="4.89" fill="#e0e0e0"/>
|
Tethys
|
||||||
<rect x="412.42" y="273.25" width="156.56" height="4.89" fill="#e0e0e0"/>
|
</text>
|
||||||
<rect x="419.76" y="286.7" width="156.56" height="4.89" fill="#e0e0e0"/>
|
|
||||||
<rect x="408.75" y="476.29" width="156.56" height="4.89" fill="#e0e0e0"/>
|
|
||||||
<rect x="412.42" y="489.75" width="156.56" height="4.89" fill="#e0e0e0"/>
|
|
||||||
<rect x="419.76" y="503.2" width="156.56" height="4.89" fill="#e0e0e0"/>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="205.71" y="209.65" width="166.35" height="168.79" fill="url(#46a816da-c484-41ec-8a6f-fbf14454d910)"/>
|
|
||||||
</g>
|
|
||||||
<rect x="206.76" y="213.32" width="163.72" height="161.45" fill="#f5f5f5"/>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="212.53" y="223.1" width="152.7" height="105.19" fill="url(#32b634d8-28f1-48d9-a868-f602a2cad942)"/>
|
|
||||||
</g>
|
|
||||||
<rect id="689f37f3-cc41-448d-b172-63ec123bc985" data-name="<Rectangle>" x="213.58" y="224.32" width="150.6" height="101.52" fill="#fff"/>
|
|
||||||
<g clip-path="url(#7a4c6aff-0be0-461b-a111-b3ae1b8fbf73)">
|
|
||||||
<polygon points="200.82 322.18 238.74 263.46 254.64 289.15 288.88 253.68 318.24 289.15 343.93 236.56 409.98 341.75 195.93 334.41 200.82 322.18" fill="#00b0ff" opacity="0.4"/>
|
|
||||||
<circle cx="230.17" cy="239" r="11.01" fill="#00b0ff" opacity="0.4"/>
|
|
||||||
</g>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="205.71" y="426.14" width="166.35" height="168.79" fill="url(#38f1cb81-8fac-4205-a0ff-a33ac00d354c)"/>
|
|
||||||
</g>
|
|
||||||
<rect x="206.76" y="429.81" width="163.72" height="161.45" fill="#f5f5f5"/>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="212.53" y="439.6" width="152.7" height="105.19" fill="url(#6fc01aaf-135e-403e-a209-43b2a4fe59f1)"/>
|
|
||||||
</g>
|
|
||||||
<rect id="b429ac3a-f8a8-4171-bcce-5b6c002c0714" data-name="<Rectangle>" x="213.58" y="440.82" width="150.6" height="101.52" fill="#fff"/>
|
|
||||||
<g clip-path="url(#79ce363a-d134-40e4-9f82-b96d04a36978)">
|
|
||||||
<polygon points="200.82 538.67 238.74 479.96 254.64 505.65 288.88 470.18 318.24 505.65 343.93 453.05 409.98 558.24 195.93 550.9 200.82 538.67" fill="#bdbdbd" opacity="0.4"/>
|
|
||||||
<circle cx="230.17" cy="455.5" r="11.01" fill="#bdbdbd" opacity="0.4"/>
|
|
||||||
</g>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="349.09" y="242.63" width="631.14" height="469.69" transform="translate(-74.16 969.06) rotate(-78.76)" fill="url(#54803c44-522d-4b9e-9a34-f1f7b43e8483)"/>
|
|
||||||
</g>
|
|
||||||
<rect x="359.37" y="247.33" width="609.12" height="455.01" transform="translate(-72.16 966.22) rotate(-78.76)" fill="#fff"/>
|
|
||||||
<rect x="523.5" y="197.22" width="322.91" height="4.89" transform="translate(-88.86 -196.94) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<rect x="433.36" y="650.7" width="322.91" height="4.89" transform="translate(-2.18 -170.66) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<rect x="428.58" y="671.14" width="249.52" height="4.89" transform="translate(1.01 -162.18) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<rect x="424.6" y="683.47" width="92.96" height="4.89" transform="translate(1.84 -145.91) rotate(11.24)" fill="#00b0ff" opacity="0.7"/>
|
|
||||||
<rect x="519.57" y="209.08" width="161.45" height="4.89" transform="translate(-88.17 -180.2) rotate(11.24)" fill="#00b0ff" opacity="0.7"/>
|
|
||||||
<rect x="512.84" y="249.31" width="291.11" height="4.89" transform="translate(-79.21 -190.76) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<rect x="509.47" y="255.44" width="70.94" height="4.89" transform="translate(-80.19 -168.52) rotate(11.24)" fill="#3ad29f" opacity="0.7"/>
|
|
||||||
<rect x="501.56" y="307.59" width="322.91" height="4.89" transform="translate(-67.76 -190.54) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="575.87" y="357.6" width="166.35" height="289.88" transform="translate(-103.27 983.74) rotate(-78.76)" fill="url(#089a6a47-adaa-499b-aefb-cd6464b62fb8)"/>
|
|
||||||
</g>
|
|
||||||
<rect x="516.06" y="420.61" width="286.22" height="162.68" transform="translate(-30.42 -186.11) rotate(11.24)" fill="#fff"/>
|
|
||||||
<rect x="496.08" y="335.18" width="322.91" height="4.89" transform="translate(-62.49 -188.94) rotate(11.24)" fill="#e0e0e0"/>
|
|
||||||
<rect x="547.86" y="424.02" width="35.47" height="118.64" transform="translate(-35.84 -168.22) rotate(11.24)" fill="#00b0ff"/>
|
|
||||||
<rect x="606.43" y="475.19" width="35.47" height="79.5" transform="translate(-28.56 -179.03) rotate(11.24)" fill="#3ad29f"/>
|
|
||||||
<rect x="665.23" y="523.93" width="35.47" height="42.81" transform="translate(-21.5 -189.92) rotate(11.24)" fill="#f55f44"/>
|
|
||||||
<rect x="731.91" y="492.72" width="35.47" height="86.84" transform="translate(-22.02 -203.09) rotate(11.24)" fill="#fdd835"/>
|
|
||||||
<g opacity="0.5">
|
|
||||||
<rect x="128.65" y="645.09" width="3.67" height="20.79" fill="#47e6b1"/>
|
|
||||||
<rect x="269.58" y="712.31" width="3.67" height="20.79" transform="translate(853.2 384.07) rotate(90)" fill="#47e6b1"/>
|
|
||||||
</g>
|
|
||||||
<path d="M699.44,75.56a4.49,4.49,0,0,1-2.5-5.43,2.16,2.16,0,0,0,.1-.5h0a2.25,2.25,0,0,0-4-1.49h0a2.16,2.16,0,0,0-.25.44,4.49,4.49,0,0,1-5.43,2.5,2.16,2.16,0,0,0-.5-.1h0a2.25,2.25,0,0,0-1.49,4h0a2.16,2.16,0,0,0,.44.25,4.49,4.49,0,0,1,2.5,5.43,2.16,2.16,0,0,0-.1.5h0a2.25,2.25,0,0,0,4,1.49h0a2.16,2.16,0,0,0,.25-.44,4.49,4.49,0,0,1,5.43-2.5,2.16,2.16,0,0,0,.5.1h0a2.25,2.25,0,0,0,1.49-4h0A2.16,2.16,0,0,0,699.44,75.56Z" transform="translate(-140.93 -67.23)" fill="#4d8af0" opacity="0.5"/>
|
|
||||||
<path d="M286.33,179.4a4.49,4.49,0,0,1-2.5-5.43,2.16,2.16,0,0,0,.1-.5h0a2.25,2.25,0,0,0-4-1.49h0a2.16,2.16,0,0,0-.25.44,4.49,4.49,0,0,1-5.43,2.5,2.16,2.16,0,0,0-.5-.1h0a2.25,2.25,0,0,0-1.49,4h0a2.16,2.16,0,0,0,.44.25,4.49,4.49,0,0,1,2.5,5.43,2.16,2.16,0,0,0-.1.5h0a2.25,2.25,0,0,0,4,1.49h0a2.16,2.16,0,0,0,.25-.44,4.49,4.49,0,0,1,5.43-2.5,2.16,2.16,0,0,0,.5.1h0a2.25,2.25,0,0,0,1.49-4h0A2.16,2.16,0,0,0,286.33,179.4Z" transform="translate(-140.93 -67.23)" fill="#fdd835" opacity="0.5"/>
|
|
||||||
<path d="M253.63,484.46a4.49,4.49,0,0,1-2.5-5.43,2.16,2.16,0,0,0,.1-.5h0a2.25,2.25,0,0,0-4-1.49h0a2.16,2.16,0,0,0-.25.44,4.49,4.49,0,0,1-5.43,2.5,2.16,2.16,0,0,0-.5-.1h0a2.25,2.25,0,0,0-1.49,4h0a2.16,2.16,0,0,0,.44.25,4.49,4.49,0,0,1,2.5,5.43,2.16,2.16,0,0,0-.1.5h0a2.25,2.25,0,0,0,4,1.49h0a2.16,2.16,0,0,0,.25-.44,4.49,4.49,0,0,1,5.43-2.5,2.16,2.16,0,0,0,.5.1h0a2.25,2.25,0,0,0,1.49-4h0A2.16,2.16,0,0,0,253.63,484.46Z" transform="translate(-140.93 -67.23)" fill="#fdd835" opacity="0.5"/>
|
|
||||||
<circle cx="337.81" cy="28.62" r="7.34" fill="#f55f44" opacity="0.5"/>
|
|
||||||
<circle cx="7.34" cy="317.46" r="7.34" fill="#f55f44" opacity="0.5"/>
|
|
||||||
<circle cx="863.76" cy="120.36" r="7.34" fill="#f55f44" opacity="0.5"/>
|
|
||||||
<circle cx="822.17" cy="339.3" r="7.34" fill="#4d8af0" opacity="0.5"/>
|
|
||||||
<circle cx="37.68" cy="145.22" r="7.34" fill="#47e6b1" opacity="0.5"/>
|
|
||||||
<circle cx="853.29" cy="647.34" r="7.34" fill="#47e6b1" opacity="0.5"/>
|
|
||||||
<circle cx="910.8" cy="430.97" r="7.34" fill="#47e6b1" opacity="0.5"/>
|
|
||||||
<rect x="544.42" y="601.05" width="186.48" height="153.07" fill="url(#fd8d88e0-7826-450d-9e0b-001d1be709c2)"/>
|
|
||||||
<path d="M723.82,639a54.55,54.55,0,0,1,109.1,0v34.91h15.27V639a69.82,69.82,0,0,0-139.65,0v34.91h15.27Z" transform="translate(-140.93 -67.23)" fill="url(#8d1793c5-b76e-44e2-a52e-569460402331)"/>
|
|
||||||
<path d="M726,638.25a52.37,52.37,0,1,1,104.74,0v33.52H845.4V638.25a67,67,0,0,0-134.06,0v33.52H726Z" transform="translate(-140.93 -67.23)" fill="#f5f5f5"/>
|
|
||||||
<rect x="546.32" y="602.45" width="182.24" height="148.73" fill="#00b0ff"/>
|
|
||||||
<rect x="546.32" y="602.45" width="182.24" height="148.73" fill="#f5f5f5"/>
|
|
||||||
<rect x="546.32" y="631.77" width="182.24" height="90.07" fill="#00b0ff"/>
|
|
||||||
<path d="M791.73,727a13.36,13.36,0,1,0-23.08,9.15v28.51a9.72,9.72,0,0,0,19.44,0V736.18A13.3,13.3,0,0,0,791.73,727Z" transform="translate(-140.93 -67.23)" fill="url(#4745700d-8097-45ff-9f71-625443fc4ad8)"/>
|
|
||||||
<path d="M789.89,729.38a11.52,11.52,0,1,0-19.9,7.89v24.58a8.38,8.38,0,1,0,16.76,0V737.27A11.47,11.47,0,0,0,789.89,729.38Z" transform="translate(-140.93 -67.23)" opacity="0.2"/>
|
|
||||||
</svg>
|
</svg>
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -1,82 +1,41 @@
|
||||||
<svg id="f31880e0-b367-484e-a419-f98cd1dead11" data-name="Layer 1"
|
<svg id="f31880e0-b367-484e-a419-f98cd1dead11" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="130" height="80" viewBox="0 0 813.71645 690.72993">
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink" width="130" height="80" viewBox="0 0 813.71645 690.72993">
|
|
||||||
<defs>
|
<defs>
|
||||||
<linearGradient id="a85ba63f-8549-4f69-990e-10de2daaa97e" x1="605.01863" y1="672.36901" x2="605.01863" y2="468.40702" gradientTransform="translate(1440.44468 -163.43414) rotate(90)" gradientUnits="userSpaceOnUse">
|
<linearGradient id="gradient" x1="0%" y1="0%" x2="0" y2="100%">
|
||||||
<stop offset="0" stop-color="grey" stop-opacity="0.25"/>
|
<stop offset="0%" style="stop-color:skyblue;" />
|
||||||
<stop offset="0.5" stop-color="grey" stop-opacity="0.12"/>
|
<stop offset="100%" style="stop-color:seagreen;" />
|
||||||
<stop offset="1" stop-color="grey" stop-opacity="0.1"/>
|
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<linearGradient id="fdf4694c-a3d1-47e0-8113-61d7fbddb30b" x1="595.38205" y1="777.13196" x2="595.38205" y2="573.93068" gradientTransform="translate(241.97717 -218.24996)" xlink:href="#a85ba63f-8549-4f69-990e-10de2daaa97e"/>
|
|
||||||
<linearGradient id="ad62446a-526e-4d60-a026-0c607e66ba72" x1="562.28979" y1="792.26091" x2="562.28979" y2="589.05872" gradientTransform="translate(259.71202 -221.9348)" xlink:href="#a85ba63f-8549-4f69-990e-10de2daaa97e"/>
|
|
||||||
<linearGradient id="a55ec3fc-d644-4cb8-8fe1-ec8babf6d4d9" x1="546.3881" y1="810.62902" x2="546.3881" y2="607.42676" gradientTransform="translate(266.64986 -228.63804)" xlink:href="#a85ba63f-8549-4f69-990e-10de2daaa97e"/>
|
|
||||||
</defs>
|
</defs>
|
||||||
<!-- <title>Specs</title> -->
|
<rect x="366.9" y="121.2" width="208" height="302" rx="13.4" transform="matrix(1,-0.2,0.2,1,-241.6,6)" fill="#37d19e"/>
|
||||||
<rect x="366.9" y="121.2" width="208" height="302" rx="13.4" transform="translate(-241.6,6) rotate(-12.8)" fill="#00b0ff"/>
|
|
||||||
<circle cx="163.4" cy="82.9" r="6" fill="#ffffff"/>
|
<circle cx="163.4" cy="82.9" r="6" fill="#ffffff"/>
|
||||||
<circle cx="169.4" cy="104.9" r="6" fill="#ffffff"/>
|
<circle cx="169.4" cy="104.9" r="6" fill="#ffffff"/>
|
||||||
<circle cx="208.4" cy="265.9" r="6" fill="#ffffff"/>
|
<circle cx="208.4" cy="265.9" r="6" fill="#ffffff"/>
|
||||||
<circle cx="214.4" cy="287.9" r="6" fill="#ffffff"/>
|
<circle cx="214.4" cy="287.9" r="6" fill="#ffffff"/>
|
||||||
<rect x="404.1" y="230.1" width="124.9" height="20.8" transform="translate(-234.7,4.3) rotate(-12.8)" fill="#f5f5f5"/>
|
<rect x="404.1" y="230.1" width="124.9" height="20.8" transform="translate(-234.7,4.3) rotate(-12.8)" fill="#f5f5f5"/>
|
||||||
<rect x="537.2" y="198.5" width="357.6" height="433.7" transform="matrix(0.9,-0.4,0.4,0.9,-293.7,174.9)" fill="#3f3d56"/>
|
<rect x="498.1" y="285.8" width="357.6" height="446.7" transform="matrix(0.9,-0.4,0.4,0.9,-293.7,174.9)" fill="#3f3d56"/>
|
||||||
<rect x="646.9" y="526.3" width="160.6" height="6.6" transform="translate(-333.3,186.2) rotate(-20.7)" fill="#00b0ff"/>
|
<!--lable field right-->
|
||||||
<rect x="657.7" y="545.4" width="263.2" height="6.6" transform="translate(-336,209.3) rotate(-20.7)" fill="#00b0ff"/>
|
<rect x="580.2" y="309.6" width="198.7" height="72.8" transform="matrix(0.9,-0.4,0.4,0.9,-273.8,214)" fill="#00b0ff"/>
|
||||||
<rect x="832.7" y="473.7" width="67.9" height="6.6" transform="translate(-305.7,232) rotate(-20.7)" fill="#00b0ff"/>
|
<!--Zeilen-->
|
||||||
<rect x="656.9" y="561.2" width="67.9" height="6.6" transform="translate(-348,175.6) rotate(-20.7)" fill="#00b0ff"/>
|
<!--erste Zeile-->
|
||||||
<rect x="748.3" y="526.8" width="67.9" height="6.6" transform="translate(-329.9,205.7) rotate(-20.7)" fill="#00b0ff"/>
|
<rect x="642.9" y="535.4" width="160.6" height="6.6" transform="matrix(0.9,-0.4,0.4,0.9,-344,232.5)" fill="#00b0ff"/>
|
||||||
<rect x="839.7" y="492.3" width="67.9" height="6.6" transform="translate(-311.9,235.7) rotate(-20.7)" fill="#00b0ff"/>
|
<!--letzte Zeile-->
|
||||||
<rect x="589.5" y="308.2" width="198.7" height="72.8" transform="translate(-270.4,160.8) rotate(-20.7)" fill="#00b0ff"/>
|
<rect x="647.8" y="582.4" width="263.2" height="6.6" transform="matrix(0.9,-0.4,0.4,0.9,-344,259)" fill="#00b0ff"/>
|
||||||
<!-- <g opacity="0.5">
|
<!--mittlere Zeile 1-->
|
||||||
<rect x="726.4" y="191.9" width="3" height="17" fill="#47e6b1"/>
|
<rect x="646.8" y="596.6" width="67.9" height="6.6" transform="matrix(0.9,-0.4,0.4,0.9,-361.1,214)" fill="#00b0ff"/>
|
||||||
<rect x="919.5" y="296.5" width="3" height="17" transform="translate(1032.9,-720.7) rotate(90)" fill="#47e6b1"/>
|
<!--mittlere Zeile 2-->
|
||||||
</g> -->
|
<rect x="764.1" y="529.6" width="67.9" height="6.6" transform="matrix(0.9,-0.4,0.4,0.9,-344.2,278)" fill="#00b0ff"/>
|
||||||
<!-- <g opacity="0.5">
|
<!--rot-->
|
||||||
<rect x="194.4" y="390.9" width="3" height="17" fill="#47e6b1"/>
|
<rect fill="#f5f5f5" height="200.5" transform="translate(-292.7,173.1) rotate(-17.8)" width="59.3" x="808.2" y="356.9"/>
|
||||||
<rect x="387.5" y="495.5" width="3" height="17" transform="translate(699.9,10.3) rotate(90)" fill="#47e6b1"/>
|
<rect fill="#ff5252" height="41.9" transform="translate(-271.7,162.6) rotate(-17.8)" width="41.9" x="793.7" y="363.7"/>
|
||||||
</g> -->
|
<rect opacity="0.5" fill="#ff5252" height="41.9" transform="translate(-285.7,169.6) rotate(-17.8)" width="41.9" x="809.2" y="411.9"/>
|
||||||
<!-- <g opacity="0.5">
|
<rect opacity="0.3" fill="#ff5252" height="41.9" transform="translate(-299.7,176.6) rotate(-17.8)" width="41.9" x="824.6" y="460.1"/>
|
||||||
<rect x="316.4" y="511.9" width="3" height="17" fill="#47e6b1"/>
|
<!--grün-->
|
||||||
<rect x="509.5" y="616.5" width="3" height="17" transform="translate(942.9,9.3) rotate(90)" fill="#47e6b1"/>
|
<rect fill="#f5f5f5" height="200.5" transform="translate(-317.2,360.7) rotate(-29.5)" width="59.3" x="792.8" y="368.2"/>
|
||||||
</g> -->
|
<rect fill="#69f0ae" height="41.9" transform="translate(-289.5,333.7) rotate(-29.5)" width="41.9" x="764.1" y="381.3"/>
|
||||||
<!-- <path d="M 947.7 687.8 a 3.7 3.7 0 0 1 -2 -4.4 a 1.8 1.8 0 0 0 0.1 -0.4 h 0 a 1.8 1.8 0 0 0 -3.3 -1.2 h 0 a 1.8 1.8 0 0 0 -0.2 0.4 a 3.7 3.7 0 0 1 -4.4 2 a 1.8 1.8 0 0 0 -0.4 -0.1 h 0 a 1.8 1.8 0 0 0 -1.2 3.3 h 0 a 1.8 1.8 0 0 0 0.4 0.2 a 3.7 3.7 0 0 1 2 4.4 a 1.8 1.8 0 0 0 -0.1 0.4 h 0 a 1.8 1.8 0 0 0 3.3 1.2 h 0 a 1.8 1.8 0 0 0 0.2 -0.4 a 3.7 3.7 0 0 1 4.4 -2 a 1.8 1.8 0 0 0 0.4 0.1 h 0 a 1.8 1.8 0 0 0 1.2 -3.3 h 0 A 1.8 1.8 0 0 0 947.7 687.8 Z" transform="translate(-193.1,-104.6)" fill="#4d8af0" opacity="0.5"/>
|
<rect opacity="0.5" fill="#69f0ae" height="41.9" transform="matrix(0.9,-0.5,0.5,0.9,-307.9,351.7)" width="41.9" x="770.9" y="411"/>
|
||||||
<path d="M 871.7 788.8 a 3.7 3.7 0 0 1 -2 -4.4 a 1.8 1.8 0 0 0 0.1 -0.4 h 0 a 1.8 1.8 0 0 0 -3.3 -1.2 h 0 a 1.8 1.8 0 0 0 -0.2 0.4 a 3.7 3.7 0 0 1 -4.4 2 a 1.8 1.8 0 0 0 -0.4 -0.1 h 0 a 1.8 1.8 0 0 0 -1.2 3.3 h 0 a 1.8 1.8 0 0 0 0.4 0.2 a 3.7 3.7 0 0 1 2 4.4 a 1.8 1.8 0 0 0 -0.1 0.4 h 0 a 1.8 1.8 0 0 0 3.3 1.2 h 0 a 1.8 1.8 0 0 0 0.2 -0.4 a 3.7 3.7 0 0 1 4.4 -2 a 1.8 1.8 0 0 0 0.4 0.1 h 0 a 1.8 1.8 0 0 0 1.2 -3.3 h 0 A 1.8 1.8 0 0 0 871.7 788.8 Z" transform="translate(-193.1,-104.6)" fill="#4d8af0" opacity="0.5"/> -->
|
<rect opacity="0.3" fill="#69f0ae" height="41.9" transform="translate(-326.4,369.7) rotate(-29.5)" width="41.9" x="813.9" y="469.4"/>
|
||||||
<!-- <circle cx="807.7" cy="405.2" r="6" fill="#47e6b1" opacity="0.5"/>
|
<!--blau-->
|
||||||
<g opacity="0.5">
|
<rect fill="#ffffff" height="200.5" transform="matrix(0.8,-0.6,0.6,0.8,-318.8,476.4)" width="59.3" x="783.8" y="379.8"/>
|
||||||
<rect fill="url(#a85ba63f-8549-4f69-990e-10de2daaa97e)" height="62.4" transform="translate(226.8,1202.6) rotate(-89.4)" width="204" x="768.1" y="410.4"/>
|
<rect fill="#00b0ff" height="41.9" transform="matrix(0.8,-0.6,0.6,0.8,-291.4,437.1)" width="41.9" x="747.1" y="398.1"/>
|
||||||
</g> -->
|
<rect opacity="0.5" fill="#00b0ff" height="41.9" transform="matrix(0.8,-0.6,0.6,0.8,-309.7,463.2)" width="41.9" x="777.3" y="438.7"/>
|
||||||
|
<rect opacity="0.3" fill="#00b0ff" height="41.9" transform="matrix(0.8,-0.6,0.6,0.8,-327.9,489.3)" width="41.9" x="807.5" y="479.3"/>
|
||||||
|
|
||||||
<!-- rot -->
|
|
||||||
<rect fill="#f5f5f5" height="200.5" transform="translate(-292.7,173.1) rotate(-17.8)" width="59.3" x="808.2" y="356.9">
|
|
||||||
</rect>
|
|
||||||
<rect fill="#ff5252" height="41.9" transform="translate(-271.7,162.6) rotate(-17.8)" width="41.9" x="793.7" y="363.7">
|
|
||||||
</rect>
|
|
||||||
<rect opacity="0.5" fill="#ff5252" height="41.9" transform="translate(-285.7,169.6) rotate(-17.8)" width="41.9" x="809.2" y="411.9">
|
|
||||||
</rect>
|
|
||||||
<rect opacity="0.3" fill="#ff5252" height="41.9" transform="translate(-299.7,176.6) rotate(-17.8)" width="41.9" x="824.6" y="460.1">
|
|
||||||
</rect>
|
|
||||||
<!-- <g opacity="0.5">
|
|
||||||
<rect fill="url(#ad62446a-526e-4d60-a026-0c607e66ba72)" height="203.2" transform="translate(-317.4,360.5) rotate(-29.5)" width="62.4" x="790.8" y="367.1"/>
|
|
||||||
</g> -->
|
|
||||||
|
|
||||||
<!-- grün -->
|
|
||||||
<rect fill="#f5f5f5" height="200.5" transform="translate(-317.2,360.7) rotate(-29.5)" width="59.3" x="792.8" y="368.2">
|
|
||||||
</rect>
|
|
||||||
<rect fill="#69f0ae" height="41.9" transform="translate(-289.5,333.7) rotate(-29.5)" width="41.9" x="764.1" y="381.3">
|
|
||||||
</rect>
|
|
||||||
<rect opacity="0.5" fill="#69f0ae" height="41.9" transform="translate(-307.9,351.7) rotate(-29.5)" width="41.9" x="789" y="425.4">
|
|
||||||
</rect>
|
|
||||||
<rect opacity="0.3" fill="#69f0ae" height="41.9" transform="translate(-326.4,369.7) rotate(-29.5)" width="41.9" x="813.9" y="469.4">
|
|
||||||
</rect>
|
|
||||||
<!-- <g opacity="0.5">
|
|
||||||
<rect fill="url(#a55ec3fc-d644-4cb8-8fe1-ec8babf6d4d9)" height="203.2" transform="translate(-319.1,476.2) rotate(-36.7)" width="62.4" x="781.9" y="378.8"/>
|
|
||||||
</g> -->
|
|
||||||
|
|
||||||
<!-- blau -->
|
|
||||||
<rect fill="#ffffff" height="200.5" transform="translate(-318.8,476.4) rotate(-36.7)" width="59.3" x="783.8" y="379.8">
|
|
||||||
</rect>
|
|
||||||
<rect fill="#00b0ff" height="41.9" transform="translate(-291.4,437.1) rotate(-36.7)" width="41.9" x="747.1" y="398.1">
|
|
||||||
</rect>
|
|
||||||
<rect opacity="0.5" x="777.3" y="438.7" width="41.9" height="41.9" transform="translate(-309.7,463.2) rotate(-36.7)" fill="#00b0ff"/>
|
|
||||||
<rect opacity="0.3" x="807.5" y="479.3" width="41.9" height="41.9" transform="translate(-327.9,489.3) rotate(-36.7)" fill="#00b0ff"/>
|
|
||||||
</svg>
|
</svg>
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 3.3 KiB |
|
@ -158,21 +158,21 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="twelve columns">
|
<div class="twelve columns">
|
||||||
<h3 class="separator">About us</h3>
|
<h3 class="separator">Über Tethys RDR</h3>
|
||||||
<h4>
|
<p class="paragraph-justify">
|
||||||
TETHYS focuses on disciplines who do not have a tradition
|
Tethys RDR ist ein Datenverlag der Geologischen Bundesanstalt (GBA),
|
||||||
of data sharing thus ensuring better availability,
|
der ausschließlich an der GBA generierte geowissenschaftliche Forschungsdaten publiziert.
|
||||||
sustainable preservation and (independent) publication
|
Die Datenpublikationen können sowohl in deutscher, als auch in englischer Sprache publiziert werden.
|
||||||
capacity of their research data.
|
Durch die Bereitstellung der Datenpublikation zusammen mit Metadaten nach standardisierten Schemata
|
||||||
</h4>
|
werden die Publikationen auffindbar und zitierbar.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Why us -->
|
<!-- Why us -->
|
||||||
{{-- <section data-sr id="why-us" class="why u-full-width"> --}}
|
<!-- <section data-sr id="benefits" class="why u-full-width">
|
||||||
<section data-sr id="benefits" class="why u-full-width">
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="twelve columns">
|
<div class="twelve columns">
|
||||||
|
@ -211,10 +211,10 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section> -->
|
||||||
|
|
||||||
<!-- Contact -->
|
<!-- Contact -->
|
||||||
<section data-sr id="contact" class="contact u-full-width">
|
<!-- <section data-sr id="contact" class="contact u-full-width">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="twelve columns">
|
<div class="twelve columns">
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section> -->
|
||||||
|
|
||||||
<!-- Contact Us -->
|
<!-- Contact Us -->
|
||||||
<section data-sr class="container contact-us u-full-width u-max-full-width">
|
<section data-sr class="container contact-us u-full-width u-max-full-width">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user