diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-01-30 20:09:22 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:24 +0100 |
commit | 3b8001a4750ba72bd9cc564a3ef27b295628a029 (patch) | |
tree | aa855c0d1e69a6b932706b188af4068dbf79b459 /docs | |
parent | 4ae17153494bf58b6e5b821d9477fc753fe6bba5 (diff) | |
download | Ishtar-3b8001a4750ba72bd9cc564a3ef27b295628a029.tar.bz2 Ishtar-3b8001a4750ba72bd9cc564a3ef27b295628a029.zip |
Documentation: update main graph
Diffstat (limited to 'docs')
-rw-r--r-- | docs/fr/source/_static/graphique-structure-ishtar.png | bin | 84912 -> 0 bytes | |||
-rw-r--r-- | docs/fr/source/_static/graphique_structure_ishtar.png | bin | 0 -> 146791 bytes | |||
-rw-r--r-- | docs/fr/source/media-src/containers.dia | bin | 0 -> 2498 bytes | |||
-rw-r--r-- | docs/fr/source/media-src/graphique_structure_ishtar.dot | 91 | ||||
-rw-r--r-- | docs/fr/source/media-src/graphique_structure_ishtar.svg | 425 | ||||
-rw-r--r-- | docs/fr/source/media-src/ishtar-coins.svg | 248 | ||||
-rw-r--r-- | docs/fr/source/media-src/ishtar-dublincore.svg | 320 | ||||
-rw-r--r-- | docs/fr/source/principes.rst | 2 |
8 files changed, 877 insertions, 209 deletions
diff --git a/docs/fr/source/_static/graphique-structure-ishtar.png b/docs/fr/source/_static/graphique-structure-ishtar.png Binary files differdeleted file mode 100644 index d98423a91..000000000 --- a/docs/fr/source/_static/graphique-structure-ishtar.png +++ /dev/null diff --git a/docs/fr/source/_static/graphique_structure_ishtar.png b/docs/fr/source/_static/graphique_structure_ishtar.png Binary files differnew file mode 100644 index 000000000..c1b0d86ff --- /dev/null +++ b/docs/fr/source/_static/graphique_structure_ishtar.png diff --git a/docs/fr/source/media-src/containers.dia b/docs/fr/source/media-src/containers.dia Binary files differnew file mode 100644 index 000000000..550a7d08b --- /dev/null +++ b/docs/fr/source/media-src/containers.dia diff --git a/docs/fr/source/media-src/graphique_structure_ishtar.dot b/docs/fr/source/media-src/graphique_structure_ishtar.dot index 473706036..4322b6c4d 100644 --- a/docs/fr/source/media-src/graphique_structure_ishtar.dot +++ b/docs/fr/source/media-src/graphique_structure_ishtar.dot @@ -1,71 +1,88 @@ digraph structure_Ishtar { - node [shape=box; style=filled]; - AO [label="Opération archéologique"]; + /* modules */ + node [shape=ellipse; dir=none; shape="folder";width=3]; + module_file [label="Module Dossier"]; + module_AO [label="Module Opération"]; + module_AS [label="Module Site/Entité archéologique"]; + module_CR [label="Module Unité d'enregistrement"]; + module_find [label="Module Mobilier"]; + module_treatment [label="Module Traitement"]; + module_warehouse [label="Module Lieu de conservation"]; + no_module [label=" "]; + module_file -> module_AO -> module_AS -> module_CR -> module_find -> module_treatment -> module_warehouse -> no_module [style=invis] ; + + node [shape=box style=filled fontname="liberationsansnarrow" + style="rounded" penwidth=2 width=2]; + File [label="Dossier"]; + AO [label=< <b>Opération archéologique</b> >]; Parcel [label="Parcelle cadastrale"]; AS [label="Site/Entité archéologique"]; CR [label="Unité d'enregistrement"]; BaseFind [label="Mobilier d'origine"]; Find [label="Mobilier"]; - Container [label="Contenant"]; - Warehouse [label="Dépôt"]; Treatment [label="Traitement"]; TreatmentFile [label="Demande de traitement"]; + Container [label="Contenant"]; + Warehouse [label="Lieu de conservation"]; Document [label="Document"]; + AdminAct [label="Acte administratif"]; - {rank = same; Parcel; AS} /* alignement parcelle - AS */ - - root=AO; - - /* liaisons vers doc */ - AO -> Document; - AS -> Document; - CR -> Document; - Container -> Document; - Find -> Document; - Warehouse -> Document; - Treatment -> Document; - TreatmentFile -> Document; + root=File; /* liaisons entre concepts */ + File -> File; + File -> AO; AO -> AO; - AO -> Parcel [arrowhead=none]; - Parcel -> CR -> BaseFind -> Find -> Container -> Warehouse; - AO -> CR; + File -> Parcel; + AO -> Parcel; AO -> AS [dir=both]; + Parcel -> CR -> BaseFind -> Find -> Container -> Warehouse; + AO -> CR [style=dashed]; CR -> AS; CR -> CR; Find -> Treatment; TreatmentFile -> Treatment; Treatment -> Find; - Document -> Container; Container -> Container; - - - /* liaison entre modules */ - node [shape=ellipse; style=filled; dir=none]; - module_AO [label="Module Opération"]; - module_AS [label="Module Site"]; - module_CR [label="Module Unité d'enregistrement"]; - module_find [label="Module Mobilier"]; - module_treatment [label="Module Traitement"]; - module_warehouse [label="Module Dépôt"]; - module_AO -> module_AS -> module_CR -> module_find -> module_treatment -> module_warehouse [dir=none; style=invis] ; + Document -> Container; /* alignement concepts <-> modules */ {rank = same; Warehouse; module_warehouse}; - {rank = same; AO; module_AO}; + {rank = same; File; module_file}; + {rank = same; AS; module_AS}; + {rank = same; Parcel; AO; module_AO}; {rank = same; CR; module_CR}; {rank = same; BaseFind; module_find}; {rank = same; Treatment; TreatmentFile; module_treatment}; - {rank = same; Container; Warehouse; module_warehouse}; + {rank = same; Warehouse; Container; module_warehouse}; + {rank = same; Document; AdminAct; no_module}; + + /* liaisons vers doc */ + File -> Document; + AO -> Document; + AS -> Document; + CR -> Document; + Container -> Document; + Find -> Document; + Warehouse -> Document; + Treatment -> Document; + TreatmentFile -> Document; + AdminAct -> Document; + + /* -> AdminAct */ + File -> AdminAct; + AO -> AdminAct; + Treatment -> AdminAct; + TreatmentFile -> AdminAct; module_AO, AO, Parcel [color=red2]; - Document [color=white]; + Document, AdminAct, no_module [color=white]; module_CR, CR [color=orange1]; module_find, BaseFind, Find [color=mediumvioletred]; module_warehouse, Container, Warehouse [color=yellowgreen]; - module_treatment, Treatment, TreatmentFile [color=yellow]; - module_AS, AS [color=slateblue2]; + module_treatment, Treatment, TreatmentFile [color="#200fff"]; + module_AS, AS [color="#8943d6"]; + module_file, File [color="#114d00"]; } diff --git a/docs/fr/source/media-src/graphique_structure_ishtar.svg b/docs/fr/source/media-src/graphique_structure_ishtar.svg index 245fe77fa..b5e568db8 100644 --- a/docs/fr/source/media-src/graphique_structure_ishtar.svg +++ b/docs/fr/source/media-src/graphique_structure_ishtar.svg @@ -4,261 +4,344 @@ <!-- Generated by graphviz version 2.40.1 (20161225.0304) --> <!-- Title: structure_Ishtar Pages: 1 --> -<svg width="733pt" height="548pt" - viewBox="0.00 0.00 732.54 548.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> -<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 544)"> +<svg width="1031pt" height="620pt" + viewBox="0.00 0.00 1030.65 620.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 616)"> <title>structure_Ishtar</title> -<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-544 728.5392,-544 728.5392,4 -4,4"/> -<!-- AO --> +<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-616 1026.6524,-616 1026.6524,4 -4,4"/> +<!-- module_file --> <g id="node1" class="node"> +<title>module_file</title> +<polygon fill="none" stroke="#114d00" points="216,-612 213,-616 192,-616 189,-612 0,-612 0,-576 216,-576 216,-612"/> +<text text-anchor="middle" x="108" y="-590.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Dossier</text> +</g> +<!-- module_AO --> +<g id="node2" class="node"> +<title>module_AO</title> +<polygon fill="none" stroke="#ee0000" points="216,-540 213,-544 192,-544 189,-540 0,-540 0,-504 216,-504 216,-540"/> +<text text-anchor="middle" x="108" y="-518.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Opération</text> +</g> +<!-- module_file->module_AO --> +<!-- module_AS --> +<g id="node3" class="node"> +<title>module_AS</title> +<polygon fill="none" stroke="#8943d6" points="216,-468 213,-472 192,-472 189,-468 0,-468 0,-432 216,-432 216,-468"/> +<text text-anchor="middle" x="108" y="-446.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Site/Entité archéologique</text> +</g> +<!-- module_AO->module_AS --> +<!-- module_CR --> +<g id="node4" class="node"> +<title>module_CR</title> +<polygon fill="none" stroke="#ffa500" points="216,-396 213,-400 192,-400 189,-396 0,-396 0,-360 216,-360 216,-396"/> +<text text-anchor="middle" x="108" y="-374.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Unité d'enregistrement</text> +</g> +<!-- module_AS->module_CR --> +<!-- module_find --> +<g id="node5" class="node"> +<title>module_find</title> +<polygon fill="none" stroke="#c71585" points="216,-324 213,-328 192,-328 189,-324 0,-324 0,-288 216,-288 216,-324"/> +<text text-anchor="middle" x="108" y="-302.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Mobilier</text> +</g> +<!-- module_CR->module_find --> +<!-- module_treatment --> +<g id="node6" class="node"> +<title>module_treatment</title> +<polygon fill="none" stroke="#200fff" points="216,-252 213,-256 192,-256 189,-252 0,-252 0,-216 216,-216 216,-252"/> +<text text-anchor="middle" x="108" y="-230.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Traitement</text> +</g> +<!-- module_find->module_treatment --> +<!-- module_warehouse --> +<g id="node7" class="node"> +<title>module_warehouse</title> +<polygon fill="none" stroke="#9acd32" points="216,-108 213,-112 192,-112 189,-108 0,-108 0,-72 216,-72 216,-108"/> +<text text-anchor="middle" x="108" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Lieu de conservation</text> +</g> +<!-- module_treatment->module_warehouse --> +<!-- no_module --> +<g id="node8" class="node"> +<title>no_module</title> +<polygon fill="none" stroke="#ffffff" points="216,-36 213,-40 192,-40 189,-36 0,-36 0,0 216,0 216,-36"/> +<text text-anchor="middle" x="108" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#000000"> </text> +</g> +<!-- module_warehouse->no_module --> +<!-- File --> +<g id="node9" class="node"> +<title>File</title> +<path fill="none" stroke="#114d00" stroke-width="2" d="M822,-612C822,-612 702,-612 702,-612 696,-612 690,-606 690,-600 690,-600 690,-588 690,-588 690,-582 696,-576 702,-576 702,-576 822,-576 822,-576 828,-576 834,-582 834,-588 834,-588 834,-600 834,-600 834,-606 828,-612 822,-612"/> +<text text-anchor="middle" x="762" y="-590.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Dossier</text> +</g> +<!-- File->File --> +<g id="edge8" class="edge"> +<title>File->File</title> +<path fill="none" stroke="#000000" d="M834.0261,-606.2467C844.7481,-604.3401 852,-600.2578 852,-594 852,-589.8933 848.8769,-586.7236 843.6994,-584.4907"/> +<polygon fill="#000000" stroke="#000000" points="844.6013,-581.1086 834.0261,-581.7533 842.6951,-587.8441 844.6013,-581.1086"/> +</g> +<!-- AO --> +<g id="node10" class="node"> <title>AO</title> -<polygon fill="#ee0000" stroke="#ee0000" points="274.5,-540 123.5,-540 123.5,-504 274.5,-504 274.5,-540"/> -<text text-anchor="middle" x="199" y="-518.3" font-family="Times,serif" font-size="14.00" fill="#000000">Opération archéologique</text> +<path fill="none" stroke="#ee0000" stroke-width="2" d="M738,-540C738,-540 596,-540 596,-540 590,-540 584,-534 584,-528 584,-528 584,-516 584,-516 584,-510 590,-504 596,-504 596,-504 738,-504 738,-504 744,-504 750,-510 750,-516 750,-516 750,-528 750,-528 750,-534 744,-540 738,-540"/> +<text text-anchor="start" x="592" y="-519.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000"> </text> +<text text-anchor="start" x="596" y="-519.3" font-family="liberationsansnarrow" font-weight="bold" font-size="14.00" fill="#000000">Opération archéologique</text> +<text text-anchor="start" x="738" y="-519.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000"> </text> </g> -<!-- AO->AO --> +<!-- File->AO --> <g id="edge9" class="edge"> -<title>AO->AO</title> -<path fill="none" stroke="#000000" d="M274.5725,-534.1149C285.3009,-532.1555 292.5,-528.1172 292.5,-522 292.5,-517.9856 289.3996,-514.8665 284.236,-512.6427"/> -<polygon fill="#000000" stroke="#000000" points="285.1491,-509.2636 274.5725,-509.8851 283.2282,-515.9949 285.1491,-509.2636"/> +<title>File->AO</title> +<path fill="none" stroke="#000000" d="M738.0275,-575.8314C726.2139,-566.8779 711.8028,-555.9558 699.0565,-546.2955"/> +<polygon fill="#000000" stroke="#000000" points="701.0486,-543.4137 690.9648,-540.1628 696.8205,-548.9925 701.0486,-543.4137"/> </g> <!-- Parcel --> -<g id="node2" class="node"> +<g id="node11" class="node"> <title>Parcel</title> -<polygon fill="#ee0000" stroke="#ee0000" points="118,-468 0,-468 0,-432 118,-432 118,-468"/> -<text text-anchor="middle" x="59" y="-446.3" font-family="Times,serif" font-size="14.00" fill="#000000">Parcelle cadastrale</text> +<path fill="none" stroke="#ee0000" stroke-width="2" d="M918,-540C918,-540 798,-540 798,-540 792,-540 786,-534 786,-528 786,-528 786,-516 786,-516 786,-510 792,-504 798,-504 798,-504 918,-504 918,-504 924,-504 930,-510 930,-516 930,-516 930,-528 930,-528 930,-534 924,-540 918,-540"/> +<text text-anchor="middle" x="858" y="-518.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Parcelle cadastrale</text> </g> -<!-- AO->Parcel --> +<!-- File->Parcel --> +<g id="edge11" class="edge"> +<title>File->Parcel</title> +<path fill="none" stroke="#000000" d="M786.2249,-575.8314C798.1628,-566.8779 812.7256,-555.9558 825.606,-546.2955"/> +<polygon fill="#000000" stroke="#000000" points="827.8829,-548.9629 833.7829,-540.1628 823.6829,-543.3629 827.8829,-548.9629"/> +</g> +<!-- Document --> +<g id="node20" class="node"> +<title>Document</title> +<path fill="none" stroke="#ffffff" stroke-width="2" d="M724,-36C724,-36 604,-36 604,-36 598,-36 592,-30 592,-24 592,-24 592,-12 592,-12 592,-6 598,0 604,0 604,0 724,0 724,0 730,0 736,-6 736,-12 736,-12 736,-24 736,-24 736,-30 730,-36 724,-36"/> +<text text-anchor="middle" x="664" y="-14.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Document</text> +</g> +<!-- File->Document --> +<g id="edge27" class="edge"> +<title>File->Document</title> +<path fill="none" stroke="#000000" d="M834.2105,-584.886C910.536,-570.7377 1020,-535.5363 1020,-450 1020,-450 1020,-450 1020,-162 1020,-121.1184 1030.6096,-100.1883 1001,-72 965.3949,-38.104 834.3662,-25.462 746.5726,-20.7622"/> +<polygon fill="#000000" stroke="#000000" points="746.5217,-17.2551 736.3562,-20.2404 746.1647,-24.246 746.5217,-17.2551"/> +</g> +<!-- AdminAct --> +<g id="node21" class="node"> +<title>AdminAct</title> +<path fill="none" stroke="#ffffff" stroke-width="2" d="M434,-36C434,-36 314,-36 314,-36 308,-36 302,-30 302,-24 302,-24 302,-12 302,-12 302,-6 308,0 314,0 314,0 434,0 434,0 440,0 446,-6 446,-12 446,-12 446,-24 446,-24 446,-30 440,-36 434,-36"/> +<text text-anchor="middle" x="374" y="-14.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Acte administratif</text> +</g> +<!-- File->AdminAct --> +<g id="edge37" class="edge"> +<title>File->AdminAct</title> +<path fill="none" stroke="#000000" d="M689.9743,-589.0519C547.6421,-577.2886 244,-541.474 244,-450 244,-450 244,-450 244,-162 244,-108.6808 293.7133,-66.239 331.6552,-41.6114"/> +<polygon fill="#000000" stroke="#000000" points="333.9198,-44.3218 340.5218,-36.0354 330.1933,-38.3962 333.9198,-44.3218"/> +</g> +<!-- AO->AO --> <g id="edge10" class="edge"> +<title>AO->AO</title> +<path fill="none" stroke="#000000" d="M750.2084,-533.8315C760.9221,-531.7798 768,-527.8359 768,-522 768,-518.1702 764.9518,-515.1552 759.8282,-512.9551"/> +<polygon fill="#000000" stroke="#000000" points="760.7874,-509.5891 750.2084,-510.1685 758.8397,-516.3127 760.7874,-509.5891"/> +</g> +<!-- AO->Parcel --> +<g id="edge12" class="edge"> <title>AO->Parcel</title> -<path fill="none" stroke="#000000" d="M163.6721,-503.8314C142.4491,-492.9167 115.5375,-479.0764 94.3166,-468.1628"/> +<path fill="none" stroke="#000000" d="M750.1895,-522C758.7657,-522 767.3419,-522 775.9182,-522"/> +<polygon fill="#000000" stroke="#000000" points="775.986,-525.5001 785.9859,-522 775.9859,-518.5001 775.986,-525.5001"/> </g> <!-- AS --> -<g id="node3" class="node"> +<g id="node12" class="node"> <title>AS</title> -<polygon fill="#7a67ee" stroke="#7a67ee" points="328,-468 174,-468 174,-432 328,-432 328,-468"/> -<text text-anchor="middle" x="251" y="-446.3" font-family="Times,serif" font-size="14.00" fill="#000000">Site/Entité archéologique</text> +<path fill="none" stroke="#8943d6" stroke-width="2" d="M652,-468C652,-468 530,-468 530,-468 524,-468 518,-462 518,-456 518,-456 518,-444 518,-444 518,-438 524,-432 530,-432 530,-432 652,-432 652,-432 658,-432 664,-438 664,-444 664,-444 664,-456 664,-456 664,-462 658,-468 652,-468"/> +<text text-anchor="middle" x="591" y="-446.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Site/Entité archéologique</text> </g> <!-- AO->AS --> -<g id="edge17" class="edge"> +<g id="edge13" class="edge"> <title>AO->AS</title> -<path fill="none" stroke="#000000" d="M218.1129,-495.536C222.5873,-489.3406 227.355,-482.7392 231.8319,-476.5405"/> -<polygon fill="#000000" stroke="#000000" points="215.1394,-493.6753 212.1218,-503.8314 220.8141,-497.7738 215.1394,-493.6753"/> -<polygon fill="#000000" stroke="#000000" points="234.684,-478.5693 237.7015,-468.4133 229.0092,-474.4708 234.684,-478.5693"/> +<path fill="none" stroke="#000000" d="M640.4709,-496.8672C633.1437,-489.9256 625.1887,-482.3893 617.8438,-475.431"/> +<polygon fill="#000000" stroke="#000000" points="638.1553,-499.4947 647.822,-503.8314 642.9696,-494.413 638.1553,-499.4947"/> +<polygon fill="#000000" stroke="#000000" points="619.8385,-472.4995 610.1719,-468.1628 615.0243,-477.5811 619.8385,-472.4995"/> </g> <!-- CR --> -<g id="node4" class="node"> +<g id="node13" class="node"> <title>CR</title> -<polygon fill="#ffa500" stroke="#ffa500" points="205,-396 65,-396 65,-360 205,-360 205,-396"/> -<text text-anchor="middle" x="135" y="-374.3" font-family="Times,serif" font-size="14.00" fill="#000000">Unité d'enregistrement</text> +<path fill="none" stroke="#ffa500" stroke-width="2" d="M752,-396C752,-396 632,-396 632,-396 626,-396 620,-390 620,-384 620,-384 620,-372 620,-372 620,-366 626,-360 632,-360 632,-360 752,-360 752,-360 758,-360 764,-366 764,-372 764,-372 764,-384 764,-384 764,-390 758,-396 752,-396"/> +<text text-anchor="middle" x="692" y="-374.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Unité d'enregistrement</text> </g> <!-- AO->CR --> -<g id="edge16" class="edge"> +<g id="edge19" class="edge"> <title>AO->CR</title> -<path fill="none" stroke="#000000" d="M185.8886,-503.6396C179.0347,-493.4756 170.8741,-480.4181 165,-468 155.4773,-447.8685 147.6447,-423.8953 142.3735,-405.7548"/> -<polygon fill="#000000" stroke="#000000" points="145.7278,-404.7538 139.6434,-396.0802 138.9909,-406.655 145.7278,-404.7538"/> -</g> -<!-- Document --> -<g id="node11" class="node"> -<title>Document</title> -<polygon fill="#ffffff" stroke="#ffffff" points="250,-108 176,-108 176,-72 250,-72 250,-108"/> -<text text-anchor="middle" x="213" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#000000">Document</text> +<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M670.1663,-503.7623C674.4492,-479.0928 682.1285,-434.8598 687.1436,-405.9731"/> +<polygon fill="#000000" stroke="#000000" points="690.5973,-406.541 688.8594,-396.0896 683.7004,-405.3435 690.5973,-406.541"/> </g> <!-- AO->Document --> -<g id="edge1" class="edge"> +<g id="edge28" class="edge"> <title>AO->Document</title> -<path fill="none" stroke="#000000" d="M274.5207,-511.6469C349.393,-496.6313 453,-460.8796 453,-378 453,-378 453,-378 453,-234 453,-193.0242 461.6534,-173.2916 433,-144 409.2616,-119.7329 317.4935,-103.6383 260.2431,-95.7295"/> -<polygon fill="#000000" stroke="#000000" points="260.7043,-92.2601 250.3264,-94.3935 259.7696,-99.1974 260.7043,-92.2601"/> +<path fill="none" stroke="#000000" d="M709.619,-503.976C754.8905,-481.6355 820,-438.9165 820,-378 820,-378 820,-378 820,-162 820,-119.0818 814.5973,-103.0801 785,-72 772.0832,-58.4361 755.1427,-48.0377 738.0447,-40.1634"/> +<polygon fill="#000000" stroke="#000000" points="739.1209,-36.8151 728.5541,-36.0444 736.334,-43.2364 739.1209,-36.8151"/> +</g> +<!-- AO->AdminAct --> +<g id="edge38" class="edge"> +<title>AO->AdminAct</title> +<path fill="none" stroke="#000000" d="M583.9347,-508.1778C470.7553,-486.9496 282,-441.9587 282,-378 282,-378 282,-378 282,-162 282,-114.2737 318.3316,-69.6646 345.332,-43.1025"/> +<polygon fill="#000000" stroke="#000000" points="347.8479,-45.5395 352.6621,-36.1016 343.0131,-40.4774 347.8479,-45.5395"/> </g> <!-- Parcel->CR --> -<g id="edge11" class="edge"> +<g id="edge14" class="edge"> <title>Parcel->CR</title> -<path fill="none" stroke="#000000" d="M78.178,-431.8314C87.3588,-423.1337 98.5006,-412.5783 108.4776,-403.1265"/> -<polygon fill="#000000" stroke="#000000" points="110.9757,-405.5811 115.8281,-396.1628 106.1615,-400.4995 110.9757,-405.5811"/> +<path fill="none" stroke="#000000" d="M836.976,-503.7623C807.5397,-478.2272 753.9406,-431.7316 720.8086,-402.9906"/> +<polygon fill="#000000" stroke="#000000" points="722.7007,-399.9986 712.8533,-396.0896 718.1137,-405.2863 722.7007,-399.9986"/> </g> <!-- AS->Document --> -<g id="edge2" class="edge"> +<g id="edge29" class="edge"> <title>AS->Document</title> -<path fill="none" stroke="#000000" d="M251,-431.8146C251,-404.4983 251,-351.25 251,-306 251,-306 251,-306 251,-234 251,-192.3681 235.9672,-146.14 224.8119,-117.567"/> -<polygon fill="#000000" stroke="#000000" points="228.0368,-116.2055 221.0588,-108.2332 221.5422,-118.817 228.0368,-116.2055"/> +<path fill="none" stroke="#000000" d="M576.7158,-431.9356C548.0872,-393.6029 487.53,-300.682 501,-216 511.5758,-149.5132 503.3408,-122.3776 548,-72 559.8872,-58.5907 575.8009,-48.2704 592.0233,-40.4237"/> +<polygon fill="#000000" stroke="#000000" points="593.9231,-43.4051 601.5823,-36.0848 591.0298,-37.031 593.9231,-43.4051"/> </g> <!-- CR->AS --> -<g id="edge18" class="edge"> +<g id="edge20" class="edge"> <title>CR->AS</title> -<path fill="none" stroke="#000000" d="M164.2623,-396.1628C179.098,-405.3712 197.2905,-416.6631 213.1762,-426.5232"/> -<polygon fill="#000000" stroke="#000000" points="211.3861,-429.5314 221.7283,-431.8314 215.0777,-423.5839 211.3861,-429.5314"/> +<path fill="none" stroke="#000000" d="M666.5216,-396.1628C653.8435,-405.2007 638.35,-416.2456 624.7032,-425.9739"/> +<polygon fill="#000000" stroke="#000000" points="622.5977,-423.1766 616.4866,-431.8314 626.661,-428.8765 622.5977,-423.1766"/> </g> <!-- CR->CR --> -<g id="edge19" class="edge"> +<g id="edge21" class="edge"> <title>CR->CR</title> -<path fill="none" stroke="#000000" d="M205.0708,-390.3102C215.749,-388.4315 223,-384.3281 223,-378 223,-373.8472 219.8773,-370.6524 214.7125,-368.4158"/> -<polygon fill="#000000" stroke="#000000" points="215.6459,-365.0426 205.0708,-365.6898 213.7413,-371.7786 215.6459,-365.0426"/> +<path fill="none" stroke="#000000" d="M764.0261,-390.2467C774.7481,-388.3401 782,-384.2578 782,-378 782,-373.8933 778.8769,-370.7236 773.6994,-368.4907"/> +<polygon fill="#000000" stroke="#000000" points="774.6013,-365.1086 764.0261,-365.7533 772.6951,-371.8441 774.6013,-365.1086"/> </g> <!-- BaseFind --> -<g id="node5" class="node"> +<g id="node14" class="node"> <title>BaseFind</title> -<polygon fill="#c71585" stroke="#c71585" points="175,-324 59,-324 59,-288 175,-288 175,-324"/> -<text text-anchor="middle" x="117" y="-302.3" font-family="Times,serif" font-size="14.00" fill="#000000">Mobilier d'origine</text> +<path fill="none" stroke="#c71585" stroke-width="2" d="M742,-324C742,-324 622,-324 622,-324 616,-324 610,-318 610,-312 610,-312 610,-300 610,-300 610,-294 616,-288 622,-288 622,-288 742,-288 742,-288 748,-288 754,-294 754,-300 754,-300 754,-312 754,-312 754,-318 748,-324 742,-324"/> +<text text-anchor="middle" x="682" y="-302.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Mobilier d'origine</text> </g> <!-- CR->BaseFind --> -<g id="edge12" class="edge"> +<g id="edge15" class="edge"> <title>CR->BaseFind</title> -<path fill="none" stroke="#000000" d="M130.4578,-359.8314C128.5116,-352.0463 126.1932,-342.7729 124.0337,-334.1347"/> -<polygon fill="#000000" stroke="#000000" points="127.4242,-333.2658 121.6033,-324.4133 120.6332,-334.9636 127.4242,-333.2658"/> +<path fill="none" stroke="#000000" d="M689.4766,-359.8314C688.4071,-352.131 687.1353,-342.9743 685.9468,-334.4166"/> +<polygon fill="#000000" stroke="#000000" points="689.3999,-333.8367 684.5574,-324.4133 682.4664,-334.7997 689.3999,-333.8367"/> </g> <!-- CR->Document --> -<g id="edge3" class="edge"> +<g id="edge30" class="edge"> <title>CR->Document</title> -<path fill="none" stroke="#000000" d="M156.683,-359.9214C166.6891,-350.3237 177.7187,-337.6926 184,-324 215.6035,-255.1079 216.6618,-163.4617 214.8273,-118.0144"/> -<polygon fill="#000000" stroke="#000000" points="218.3226,-117.83 214.3446,-108.0104 211.3307,-118.1675 218.3226,-117.83"/> +<path fill="none" stroke="#000000" d="M725.316,-359.8753C738.974,-350.8235 753.7234,-338.6556 763,-324 784.8649,-289.4568 782,-274.8816 782,-234 782,-234 782,-234 782,-162 782,-121.1184 787.4062,-104.797 763,-72 753.2724,-58.9281 739.4063,-48.6483 725.1205,-40.7267"/> +<polygon fill="#000000" stroke="#000000" points="726.6923,-37.5991 716.2047,-36.0952 723.4654,-43.811 726.6923,-37.5991"/> </g> <!-- Find --> -<g id="node6" class="node"> +<g id="node15" class="node"> <title>Find</title> -<polygon fill="#c71585" stroke="#c71585" points="140.5,-252 75.5,-252 75.5,-216 140.5,-216 140.5,-252"/> -<text text-anchor="middle" x="108" y="-230.3" font-family="Times,serif" font-size="14.00" fill="#000000">Mobilier</text> +<path fill="none" stroke="#c71585" stroke-width="2" d="M686,-180C686,-180 566,-180 566,-180 560,-180 554,-174 554,-168 554,-168 554,-156 554,-156 554,-150 560,-144 566,-144 566,-144 686,-144 686,-144 692,-144 698,-150 698,-156 698,-156 698,-168 698,-168 698,-174 692,-180 686,-180"/> +<text text-anchor="middle" x="626" y="-158.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Mobilier</text> </g> <!-- BaseFind->Find --> -<g id="edge13" class="edge"> +<g id="edge16" class="edge"> <title>BaseFind->Find</title> -<path fill="none" stroke="#000000" d="M114.7289,-287.8314C113.7664,-280.131 112.6218,-270.9743 111.5521,-262.4166"/> -<polygon fill="#000000" stroke="#000000" points="115.0151,-261.9019 110.3017,-252.4133 108.0691,-262.7702 115.0151,-261.9019"/> -</g> -<!-- Container --> -<g id="node7" class="node"> -<title>Container</title> -<polygon fill="#9acd32" stroke="#9acd32" points="199,-36 127,-36 127,0 199,0 199,-36"/> -<text text-anchor="middle" x="163" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#000000">Contenant</text> -</g> -<!-- Find->Container --> -<g id="edge14" class="edge"> -<title>Find->Container</title> -<path fill="none" stroke="#000000" d="M85.7787,-215.9032C75.8692,-206.3888 65.26,-193.8349 60,-180 54.3139,-165.0445 54.6243,-159.0699 60,-144 74.5388,-103.243 108.5475,-66.1548 133.526,-42.9334"/> -<polygon fill="#000000" stroke="#000000" points="135.9081,-45.4981 140.9564,-36.1833 131.2012,-40.3168 135.9081,-45.4981"/> +<path fill="none" stroke="#000000" d="M680.2717,-287.782C678.0229,-269.1402 673.116,-239.637 663,-216 658.9513,-206.5397 653.1378,-197.016 647.3145,-188.6574"/> +<polygon fill="#000000" stroke="#000000" points="650.0319,-186.4434 641.3159,-180.4199 644.3733,-190.5641 650.0319,-186.4434"/> </g> <!-- Treatment --> -<g id="node9" class="node"> +<g id="node16" class="node"> <title>Treatment</title> -<polygon fill="#ffff00" stroke="#ffff00" points="146.5,-180 69.5,-180 69.5,-144 146.5,-144 146.5,-180"/> -<text text-anchor="middle" x="108" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#000000">Traitement</text> +<path fill="none" stroke="#200fff" stroke-width="2" d="M642,-252C642,-252 522,-252 522,-252 516,-252 510,-246 510,-240 510,-240 510,-228 510,-228 510,-222 516,-216 522,-216 522,-216 642,-216 642,-216 648,-216 654,-222 654,-228 654,-228 654,-240 654,-240 654,-246 648,-252 642,-252"/> +<text text-anchor="middle" x="582" y="-230.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Traitement</text> </g> <!-- Find->Treatment --> -<g id="edge20" class="edge"> +<g id="edge22" class="edge"> <title>Find->Treatment</title> -<path fill="none" stroke="#000000" d="M102.0476,-215.8314C101.2972,-208.131 101.0763,-198.9743 101.3849,-190.4166"/> -<polygon fill="#000000" stroke="#000000" points="104.8792,-190.6161 102.024,-180.4133 97.8935,-190.1697 104.8792,-190.6161"/> -</g> -<!-- Find->Document --> -<g id="edge5" class="edge"> -<title>Find->Document</title> -<path fill="none" stroke="#000000" d="M125.2176,-215.5626C134.4265,-205.376 145.7428,-192.3216 155,-180 170.3783,-159.5311 185.9976,-135.0362 197.1472,-116.7722"/> -<polygon fill="#000000" stroke="#000000" points="200.213,-118.4663 202.393,-108.0982 194.2231,-114.8438 200.213,-118.4663"/> -</g> -<!-- Container->Container --> -<g id="edge24" class="edge"> -<title>Container->Container</title> -<path fill="none" stroke="#000000" d="M199.0873,-31.4333C209.2211,-30.8449 217,-26.3672 217,-18 217,-12.7705 213.9614,-9.0603 209.2083,-6.8695"/> -<polygon fill="#000000" stroke="#000000" points="209.6146,-3.3725 199.0873,-4.5667 208.0616,-10.1981 209.6146,-3.3725"/> -</g> -<!-- Warehouse --> -<g id="node8" class="node"> -<title>Warehouse</title> -<polygon fill="#9acd32" stroke="#9acd32" points="289,-36 235,-36 235,0 289,0 289,-36"/> -<text text-anchor="middle" x="262" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#000000">Dépôt</text> +<path fill="none" stroke="#000000" d="M620.7235,-180.4133C616.4755,-188.654 610.6298,-198.5245 604.7074,-207.536"/> +<polygon fill="#000000" stroke="#000000" points="601.7937,-205.5965 599.0555,-215.8314 607.5786,-209.538 601.7937,-205.5965"/> </g> -<!-- Container->Warehouse --> -<g id="edge15" class="edge"> -<title>Container->Warehouse</title> -<path fill="none" stroke="#000000" d="M199.3516,-18C207.7026,-18 216.0537,-18 224.4048,-18"/> -<polygon fill="#000000" stroke="#000000" points="224.5913,-21.5001 234.5913,-18 224.5913,-14.5001 224.5913,-21.5001"/> +<!-- Container --> +<g id="node18" class="node"> +<title>Container</title> +<path fill="none" stroke="#9acd32" stroke-width="2" d="M724,-108C724,-108 604,-108 604,-108 598,-108 592,-102 592,-96 592,-96 592,-84 592,-84 592,-78 598,-72 604,-72 604,-72 724,-72 724,-72 730,-72 736,-78 736,-84 736,-84 736,-96 736,-96 736,-102 730,-108 724,-108"/> +<text text-anchor="middle" x="664" y="-86.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Contenant</text> </g> -<!-- Container->Document --> -<g id="edge4" class="edge"> -<title>Container->Document</title> -<path fill="none" stroke="#000000" d="M181.763,-36.4133C188.2066,-44.569 195.1694,-54.3212 200.9761,-63.257"/> -<polygon fill="#000000" stroke="#000000" points="198.0671,-65.2065 206.3353,-71.8314 204.0031,-61.4964 198.0671,-65.2065"/> +<!-- Find->Container --> +<g id="edge17" class="edge"> +<title>Find->Container</title> +<path fill="none" stroke="#000000" d="M635.589,-143.8314C639.8317,-135.7925 644.9121,-126.1666 649.596,-117.2918"/> +<polygon fill="#000000" stroke="#000000" points="652.7096,-118.8908 654.2819,-108.4133 646.5189,-115.6235 652.7096,-118.8908"/> </g> -<!-- Warehouse->Document --> -<g id="edge6" class="edge"> -<title>Warehouse->Document</title> -<path fill="none" stroke="#000000" d="M249.4687,-36.4133C243.8605,-44.654 237.143,-54.5245 231.0102,-63.536"/> -<polygon fill="#000000" stroke="#000000" points="228.0976,-61.595 225.3648,-71.8314 233.8846,-65.5334 228.0976,-61.595"/> +<!-- Find->Document --> +<g id="edge32" class="edge"> +<title>Find->Document</title> +<path fill="none" stroke="#000000" d="M606.8791,-143.8292C589.9916,-125.4776 569.9263,-96.4284 583,-72 589.674,-59.5296 600.6406,-49.4416 612.3801,-41.5111"/> +<polygon fill="#000000" stroke="#000000" points="614.3896,-44.3826 621.0146,-36.1146 610.6796,-38.4466 614.3896,-44.3826"/> </g> <!-- Treatment->Find --> -<g id="edge22" class="edge"> +<g id="edge24" class="edge"> <title>Treatment->Find</title> -<path fill="none" stroke="#000000" d="M113.976,-180.4133C114.7071,-188.0593 114.9203,-197.1084 114.6155,-205.5726"/> -<polygon fill="#000000" stroke="#000000" points="111.1048,-205.6264 113.9524,-215.8314 118.0902,-206.078 111.1048,-205.6264"/> +<path fill="none" stroke="#000000" d="M587.1507,-215.8314C591.3668,-207.6232 597.1958,-197.7606 603.1165,-188.7323"/> +<polygon fill="#000000" stroke="#000000" points="606.0442,-190.6511 608.7714,-180.4133 600.2551,-186.7158 606.0442,-190.6511"/> </g> <!-- Treatment->Document --> -<g id="edge7" class="edge"> +<g id="edge34" class="edge"> <title>Treatment->Document</title> -<path fill="none" stroke="#000000" d="M134.4959,-143.8314C147.6774,-134.7927 163.7847,-123.7476 177.9711,-114.0198"/> -<polygon fill="#000000" stroke="#000000" points="180.2446,-116.7047 186.5125,-108.1628 176.2859,-110.9316 180.2446,-116.7047"/> +<path fill="none" stroke="#000000" d="M565.5719,-215.989C557.6975,-206.1289 549.102,-193.2441 545,-180 540.2662,-164.7163 541.9555,-159.7077 545,-144 551.5644,-110.1321 551.601,-98.2376 574,-72 584.5786,-59.6085 598.7468,-49.2855 612.7067,-41.0977"/> +<polygon fill="#000000" stroke="#000000" points="614.7784,-43.95 621.8103,-36.0252 611.3712,-37.8352 614.7784,-43.95"/> +</g> +<!-- Treatment->AdminAct --> +<g id="edge39" class="edge"> +<title>Treatment->AdminAct</title> +<path fill="none" stroke="#000000" d="M564.6238,-215.9555C527.6886,-177.5997 441.2728,-87.8602 398.6556,-43.6038"/> +<polygon fill="#000000" stroke="#000000" points="400.9306,-40.9205 391.473,-36.1451 395.8883,-45.7761 400.9306,-40.9205"/> </g> <!-- TreatmentFile --> -<g id="node10" class="node"> +<g id="node17" class="node"> <title>TreatmentFile</title> -<polygon fill="#ffff00" stroke="#ffff00" points="424.5,-180 279.5,-180 279.5,-144 424.5,-144 424.5,-180"/> -<text text-anchor="middle" x="352" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#000000">Demande de traitement</text> +<path fill="none" stroke="#200fff" stroke-width="2" d="M442,-252C442,-252 322,-252 322,-252 316,-252 310,-246 310,-240 310,-240 310,-228 310,-228 310,-222 316,-216 322,-216 322,-216 442,-216 442,-216 448,-216 454,-222 454,-228 454,-228 454,-240 454,-240 454,-246 448,-252 442,-252"/> +<text text-anchor="middle" x="382" y="-230.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Demande de traitement</text> </g> <!-- TreatmentFile->Treatment --> -<g id="edge21" class="edge"> +<g id="edge23" class="edge"> <title>TreatmentFile->Treatment</title> -<path fill="none" stroke="#000000" d="M279.3884,-162C238.4977,-162 197.6069,-162 156.7162,-162"/> -<polygon fill="#000000" stroke="#000000" points="156.6016,-158.5001 146.6016,-162 156.6015,-165.5001 156.6016,-158.5001"/> +<path fill="none" stroke="#000000" d="M454.2656,-234C469.2657,-234 484.2657,-234 499.2658,-234"/> +<polygon fill="#000000" stroke="#000000" points="499.6505,-237.5001 509.6505,-234 499.6504,-230.5001 499.6505,-237.5001"/> </g> <!-- TreatmentFile->Document --> -<g id="edge8" class="edge"> +<g id="edge35" class="edge"> <title>TreatmentFile->Document</title> -<path fill="none" stroke="#000000" d="M316.9244,-143.8314C298.7339,-134.4089 276.3342,-122.8062 256.994,-112.7883"/> -<polygon fill="#000000" stroke="#000000" points="258.5537,-109.6545 248.0643,-108.1628 255.334,-115.8701 258.5537,-109.6545"/> +<path fill="none" stroke="#000000" d="M385.7244,-215.8715C393.8831,-177.8846 414.3419,-91.8076 436,-72 457.3797,-52.447 525.5598,-37.9345 581.8381,-28.907"/> +<polygon fill="#000000" stroke="#000000" points="582.4963,-32.3467 591.8337,-27.3404 581.4124,-25.4311 582.4963,-32.3467"/> </g> -<!-- Document->Container --> -<g id="edge23" class="edge"> -<title>Document->Container</title> -<path fill="none" stroke="#000000" d="M194.4305,-71.8314C187.9975,-63.7079 181.0284,-53.9637 175.1988,-45.0118"/> -<polygon fill="#000000" stroke="#000000" points="178.0866,-43.0288 169.811,-36.4133 172.1549,-46.7456 178.0866,-43.0288"/> +<!-- TreatmentFile->AdminAct --> +<g id="edge40" class="edge"> +<title>TreatmentFile->AdminAct</title> +<path fill="none" stroke="#000000" d="M381.3317,-215.9555C379.9405,-178.3938 376.7242,-91.5541 375.0522,-46.4103"/> +<polygon fill="#000000" stroke="#000000" points="378.5399,-46.0086 374.672,-36.1451 371.5446,-46.2678 378.5399,-46.0086"/> </g> -<!-- module_AO --> -<g id="node12" class="node"> -<title>module_AO</title> -<ellipse fill="#ee0000" stroke="#ee0000" cx="603" cy="-522" rx="76.0865" ry="18"/> -<text text-anchor="middle" x="603" y="-518.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Opération</text> +<!-- Container->Container --> +<g id="edge25" class="edge"> +<title>Container->Container</title> +<path fill="none" stroke="#000000" d="M736.0261,-102.2467C746.7481,-100.3401 754,-96.2578 754,-90 754,-85.8933 750.8769,-82.7236 745.6994,-80.4907"/> +<polygon fill="#000000" stroke="#000000" points="746.6013,-77.1086 736.0261,-77.7533 744.6951,-83.8441 746.6013,-77.1086"/> </g> -<!-- module_AS --> -<g id="node13" class="node"> -<title>module_AS</title> -<ellipse fill="#7a67ee" stroke="#7a67ee" cx="603" cy="-450" rx="54.6905" ry="18"/> -<text text-anchor="middle" x="603" y="-446.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Site</text> +<!-- Warehouse --> +<g id="node19" class="node"> +<title>Warehouse</title> +<path fill="none" stroke="#9acd32" stroke-width="2" d="M980,-108C980,-108 860,-108 860,-108 854,-108 848,-102 848,-96 848,-96 848,-84 848,-84 848,-78 854,-72 860,-72 860,-72 980,-72 980,-72 986,-72 992,-78 992,-84 992,-84 992,-96 992,-96 992,-102 986,-108 980,-108"/> +<text text-anchor="middle" x="920" y="-86.3" font-family="liberationsansnarrow" font-size="14.00" fill="#000000">Lieu de conservation</text> </g> -<!-- module_AO->module_AS --> -<!-- module_CR --> -<g id="node14" class="node"> -<title>module_CR</title> -<ellipse fill="#ffa500" stroke="#ffa500" cx="603" cy="-378" rx="121.5784" ry="18"/> -<text text-anchor="middle" x="603" y="-374.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Unité d'enregistrement</text> +<!-- Container->Warehouse --> +<g id="edge18" class="edge"> +<title>Container->Warehouse</title> +<path fill="none" stroke="#000000" d="M736.5,-90C770.3159,-90 804.1318,-90 837.9478,-90"/> +<polygon fill="#000000" stroke="#000000" points="837.9619,-93.5001 847.9619,-90 837.9619,-86.5001 837.9619,-93.5001"/> </g> -<!-- module_AS->module_CR --> -<!-- module_find --> -<g id="node15" class="node"> -<title>module_find</title> -<ellipse fill="#c71585" stroke="#c71585" cx="603" cy="-306" rx="72.2875" ry="18"/> -<text text-anchor="middle" x="603" y="-302.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Mobilier</text> +<!-- Container->Document --> +<g id="edge31" class="edge"> +<title>Container->Document</title> +<path fill="none" stroke="#000000" d="M658.0476,-71.8314C657.2972,-64.131 657.0763,-54.9743 657.3849,-46.4166"/> +<polygon fill="#000000" stroke="#000000" points="660.8792,-46.6161 658.024,-36.4133 653.8935,-46.1697 660.8792,-46.6161"/> </g> -<!-- module_CR->module_find --> -<!-- module_treatment --> -<g id="node16" class="node"> -<title>module_treatment</title> -<ellipse fill="#ffff00" stroke="#ffff00" cx="603" cy="-162" rx="79.8859" ry="18"/> -<text text-anchor="middle" x="603" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Traitement</text> +<!-- Warehouse->Document --> +<g id="edge33" class="edge"> +<title>Warehouse->Document</title> +<path fill="none" stroke="#000000" d="M855.7308,-71.9243C819.9733,-61.8675 775.3073,-49.3052 738.0845,-38.8363"/> +<polygon fill="#000000" stroke="#000000" points="738.8698,-35.4214 728.2956,-36.0831 736.9745,-42.1599 738.8698,-35.4214"/> </g> -<!-- module_find->module_treatment --> -<!-- module_warehouse --> -<g id="node17" class="node"> -<title>module_warehouse</title> -<ellipse fill="#9acd32" stroke="#9acd32" cx="603" cy="-18" rx="62.2891" ry="18"/> -<text text-anchor="middle" x="603" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#000000">Module Dépôt</text> +<!-- Document->Container --> +<g id="edge26" class="edge"> +<title>Document->Container</title> +<path fill="none" stroke="#000000" d="M669.976,-36.4133C670.7071,-44.0593 670.9203,-53.1084 670.6155,-61.5726"/> +<polygon fill="#000000" stroke="#000000" points="667.1048,-61.6264 669.9524,-71.8314 674.0902,-62.078 667.1048,-61.6264"/> +</g> +<!-- AdminAct->Document --> +<g id="edge36" class="edge"> +<title>AdminAct->Document</title> +<path fill="none" stroke="#000000" d="M446.2168,-18C491.2981,-18 536.3794,-18 581.4606,-18"/> +<polygon fill="#000000" stroke="#000000" points="581.6892,-21.5001 591.6892,-18 581.6891,-14.5001 581.6892,-21.5001"/> </g> -<!-- module_treatment->module_warehouse --> </g> </svg> diff --git a/docs/fr/source/media-src/ishtar-coins.svg b/docs/fr/source/media-src/ishtar-coins.svg new file mode 100644 index 000000000..97db72ca7 --- /dev/null +++ b/docs/fr/source/media-src/ishtar-coins.svg @@ -0,0 +1,248 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" + "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<!-- Generated by graphviz version 2.40.1 (20161225.0304) + --> +<!-- Title: ishtar_dc Pages: 1 --> +<svg width="378pt" height="859pt" + viewBox="0.00 0.00 378.00 859.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 855)"> +<title>ishtar_dc</title> +<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-855 374,-855 374,4 -4,4"/> +<!-- COINS_LANGUAGE --> +<g id="node1" class="node"> +<title>COINS_LANGUAGE</title> +<path fill="none" stroke="#a4a4a4" d="M345.5,-43C345.5,-43 227.5,-43 227.5,-43 221.5,-43 215.5,-37 215.5,-31 215.5,-31 215.5,-12 215.5,-12 215.5,-6 221.5,0 227.5,0 227.5,0 345.5,0 345.5,0 351.5,0 357.5,-6 357.5,-12 357.5,-12 357.5,-31 357.5,-31 357.5,-37 351.5,-43 345.5,-43"/> +<text text-anchor="middle" x="286.5" y="-17.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Langue (rtf.language)</text> +</g> +<!-- COINS_RIGHTS --> +<g id="node2" class="node"> +<title>COINS_RIGHTS</title> +<path fill="none" stroke="#a4a4a4" d="M329.5,-104C329.5,-104 243.5,-104 243.5,-104 237.5,-104 231.5,-98 231.5,-92 231.5,-92 231.5,-73 231.5,-73 231.5,-67 237.5,-61 243.5,-61 243.5,-61 329.5,-61 329.5,-61 335.5,-61 341.5,-67 341.5,-73 341.5,-73 341.5,-92 341.5,-92 341.5,-98 335.5,-104 329.5,-104"/> +<text text-anchor="middle" x="286.5" y="-78.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Droits (rtf.rights)</text> +</g> +<!-- COINS_ISBN --> +<g id="node3" class="node"> +<title>COINS_ISBN</title> +<path fill="none" stroke="#a4a4a4" d="M324.5,-165C324.5,-165 248.5,-165 248.5,-165 242.5,-165 236.5,-159 236.5,-153 236.5,-153 236.5,-134 236.5,-134 236.5,-128 242.5,-122 248.5,-122 248.5,-122 324.5,-122 324.5,-122 330.5,-122 336.5,-128 336.5,-134 336.5,-134 336.5,-153 336.5,-153 336.5,-159 330.5,-165 324.5,-165"/> +<text text-anchor="middle" x="286.5" y="-139.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISBN (rtf.isbn)</text> +</g> +<!-- COINS_ISSN --> +<g id="node4" class="node"> +<title>COINS_ISSN</title> +<path fill="none" stroke="#a4a4a4" d="M324,-226C324,-226 249,-226 249,-226 243,-226 237,-220 237,-214 237,-214 237,-195 237,-195 237,-189 243,-183 249,-183 249,-183 324,-183 324,-183 330,-183 336,-189 336,-195 336,-195 336,-214 336,-214 336,-220 330,-226 324,-226"/> +<text text-anchor="middle" x="286.5" y="-200.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISBN (rtf.issn)</text> +</g> +<!-- COINS_SOURCE --> +<g id="node5" class="node"> +<title>COINS_SOURCE</title> +<path fill="none" stroke="#a4a4a4" d="M337,-318C337,-318 236,-318 236,-318 230,-318 224,-312 224,-306 224,-306 224,-287 224,-287 224,-281 230,-275 236,-275 236,-275 337,-275 337,-275 343,-275 349,-281 349,-287 349,-287 349,-306 349,-306 349,-312 343,-318 337,-318"/> +<text text-anchor="middle" x="286.5" y="-292.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source (rtf.source)</text> +</g> +<!-- COINS_DATE --> +<g id="node6" class="node"> +<title>COINS_DATE</title> +<path fill="none" stroke="#a4a4a4" d="M324.5,-409C324.5,-409 248.5,-409 248.5,-409 242.5,-409 236.5,-403 236.5,-397 236.5,-397 236.5,-378 236.5,-378 236.5,-372 242.5,-366 248.5,-366 248.5,-366 324.5,-366 324.5,-366 330.5,-366 336.5,-372 336.5,-378 336.5,-378 336.5,-397 336.5,-397 336.5,-403 330.5,-409 324.5,-409"/> +<text text-anchor="middle" x="286.5" y="-383.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Date (rtf.date)</text> +</g> +<!-- COINS_PUBLISHER --> +<g id="node7" class="node"> +<title>COINS_PUBLISHER</title> +<path fill="none" stroke="#a4a4a4" d="M343,-470C343,-470 230,-470 230,-470 224,-470 218,-464 218,-458 218,-458 218,-439 218,-439 218,-433 224,-427 230,-427 230,-427 343,-427 343,-427 349,-427 355,-433 355,-439 355,-439 355,-458 355,-458 355,-464 349,-470 343,-470"/> +<text text-anchor="middle" x="286.5" y="-444.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Éditeur (rtf.publisher)</text> +</g> +<!-- COINS_DESCRIPTION --> +<g id="node8" class="node"> +<title>COINS_DESCRIPTION</title> +<path fill="none" stroke="#a4a4a4" d="M358,-531C358,-531 215,-531 215,-531 209,-531 203,-525 203,-519 203,-519 203,-500 203,-500 203,-494 209,-488 215,-488 215,-488 358,-488 358,-488 364,-488 370,-494 370,-500 370,-500 370,-519 370,-519 370,-525 364,-531 358,-531"/> +<text text-anchor="middle" x="286.5" y="-505.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Description (rtf.description)</text> +</g> +<!-- COINS_GENRE --> +<g id="node9" class="node"> +<title>COINS_GENRE</title> +<path fill="none" stroke="#a4a4a4" d="M332.5,-668C332.5,-668 240.5,-668 240.5,-668 234.5,-668 228.5,-662 228.5,-656 228.5,-656 228.5,-637 228.5,-637 228.5,-631 234.5,-625 240.5,-625 240.5,-625 332.5,-625 332.5,-625 338.5,-625 344.5,-631 344.5,-637 344.5,-637 344.5,-656 344.5,-656 344.5,-662 338.5,-668 332.5,-668"/> +<text text-anchor="middle" x="286.5" y="-642.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Genre (rft.genre)</text> +</g> +<!-- COINS_TYPE --> +<g id="node10" class="node"> +<title>COINS_TYPE</title> +<path fill="none" stroke="#a4a4a4" d="M325,-607C325,-607 248,-607 248,-607 242,-607 236,-601 236,-595 236,-595 236,-576 236,-576 236,-570 242,-564 248,-564 248,-564 325,-564 325,-564 331,-564 337,-570 337,-576 337,-576 337,-595 337,-595 337,-601 331,-607 325,-607"/> +<text text-anchor="middle" x="286.5" y="-581.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Type (rft.type)</text> +</g> +<!-- COINS_AU --> +<g id="node11" class="node"> +<title>COINS_AU</title> +<path fill="none" stroke="#a4a4a4" d="M324.5,-729C324.5,-729 248.5,-729 248.5,-729 242.5,-729 236.5,-723 236.5,-717 236.5,-717 236.5,-698 236.5,-698 236.5,-692 242.5,-686 248.5,-686 248.5,-686 324.5,-686 324.5,-686 330.5,-686 336.5,-692 336.5,-698 336.5,-698 336.5,-717 336.5,-717 336.5,-723 330.5,-729 324.5,-729"/> +<text text-anchor="middle" x="286.5" y="-703.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Auteur (rft.au)</text> +</g> +<!-- COINS_TITLE --> +<g id="node12" class="node"> +<title>COINS_TITLE</title> +<path fill="none" stroke="#a4a4a4" d="M320.5,-790C320.5,-790 252.5,-790 252.5,-790 246.5,-790 240.5,-784 240.5,-778 240.5,-778 240.5,-759 240.5,-759 240.5,-753 246.5,-747 252.5,-747 252.5,-747 320.5,-747 320.5,-747 326.5,-747 332.5,-753 332.5,-759 332.5,-759 332.5,-778 332.5,-778 332.5,-784 326.5,-790 320.5,-790"/> +<text text-anchor="middle" x="286.5" y="-764.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Titre (rft.title)</text> +</g> +<!-- COinS --> +<g id="node13" class="node"> +<title>COinS</title> +<polygon fill="#432776" stroke="#432776" points="317.5,-851 314.5,-855 293.5,-855 290.5,-851 255.5,-851 255.5,-808 317.5,-808 317.5,-851"/> +<text text-anchor="middle" x="286.5" y="-825.8" font-family="liberationsansnarrow" font-size="14.00" fill="#ffffff">COinS</text> +</g> +<!-- I_Rights --> +<g id="node14" class="node"> +<title>I_Rights</title> +<path fill="none" stroke="#a4a4a4" d="M123.5,-104C123.5,-104 43.5,-104 43.5,-104 37.5,-104 31.5,-98 31.5,-92 31.5,-92 31.5,-73 31.5,-73 31.5,-67 37.5,-61 43.5,-61 43.5,-61 123.5,-61 123.5,-61 129.5,-61 135.5,-67 135.5,-73 135.5,-73 135.5,-92 135.5,-92 135.5,-98 129.5,-104 123.5,-104"/> +<text text-anchor="middle" x="83.5" y="-78.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Droits/licences</text> +</g> +<!-- I_Rights->COINS_RIGHTS --> +<g id="edge13" class="edge"> +<title>I_Rights->COINS_RIGHTS</title> +<path fill="none" stroke="#432776" d="M135.5139,-82.5C161.67,-82.5 193.6308,-82.5 221.4011,-82.5"/> +<polygon fill="#432776" stroke="#432776" points="221.4241,-86.0001 231.4241,-82.5 221.4241,-79.0001 221.4241,-86.0001"/> +</g> +<!-- I_Source1 --> +<g id="node15" class="node"> +<title>I_Source1</title> +<path fill="none" stroke="#a4a4a4" d="M155,-348C155,-348 12,-348 12,-348 6,-348 0,-342 0,-336 0,-336 0,-317 0,-317 0,-311 6,-305 12,-305 12,-305 155,-305 155,-305 161,-305 167,-311 167,-317 167,-317 167,-336 167,-336 167,-342 161,-348 155,-348"/> +<text text-anchor="middle" x="83.5" y="-322.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source - Document parent</text> +</g> +<!-- I_Source1->COINS_SOURCE --> +<g id="edge11" class="edge"> +<title>I_Source1->COINS_SOURCE</title> +<path fill="none" stroke="#432776" d="M167.2399,-314.1246C182.5916,-311.8559 198.5027,-309.5045 213.5091,-307.2868"/> +<polygon fill="#432776" stroke="#432776" points="214.3547,-310.7 223.7356,-305.7755 213.3313,-303.7752 214.3547,-310.7"/> +</g> +<!-- I_Source2 --> +<g id="node16" class="node"> +<title>I_Source2</title> +<path fill="none" stroke="#a4a4a4" d="M137.5,-287C137.5,-287 29.5,-287 29.5,-287 23.5,-287 17.5,-281 17.5,-275 17.5,-275 17.5,-256 17.5,-256 17.5,-250 23.5,-244 29.5,-244 29.5,-244 137.5,-244 137.5,-244 143.5,-244 149.5,-250 149.5,-256 149.5,-256 149.5,-275 149.5,-275 149.5,-281 143.5,-287 137.5,-287"/> +<text text-anchor="middle" x="83.5" y="-261.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source - Saisie libre</text> +</g> +<!-- I_Source2->COINS_SOURCE --> +<g id="edge12" class="edge"> +<title>I_Source2->COINS_SOURCE</title> +<path fill="none" stroke="#432776" d="M149.6889,-275.6077C170.1717,-278.7356 192.8463,-282.1982 213.7481,-285.3901"/> +<polygon fill="#432776" stroke="#432776" points="213.4354,-288.8829 223.8492,-286.9326 214.4922,-281.9631 213.4354,-288.8829"/> +</g> +<!-- I_ISBN --> +<g id="node17" class="node"> +<title>I_ISBN</title> +<path fill="none" stroke="#a4a4a4" d="M99,-165C99,-165 68,-165 68,-165 62,-165 56,-159 56,-153 56,-153 56,-134 56,-134 56,-128 62,-122 68,-122 68,-122 99,-122 99,-122 105,-122 111,-128 111,-134 111,-134 111,-153 111,-153 111,-159 105,-165 99,-165"/> +<text text-anchor="middle" x="83.5" y="-139.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISBN</text> +</g> +<!-- I_ISBN->COINS_ISBN --> +<g id="edge9" class="edge"> +<title>I_ISBN->COINS_ISBN</title> +<path fill="none" stroke="#432776" d="M111.3006,-143.5C140.6802,-143.5 187.9336,-143.5 225.966,-143.5"/> +<polygon fill="#432776" stroke="#432776" points="226.4261,-147.0001 236.4261,-143.5 226.426,-140.0001 226.4261,-147.0001"/> +</g> +<!-- I_ISSN --> +<g id="node18" class="node"> +<title>I_ISSN</title> +<path fill="none" stroke="#a4a4a4" d="M99,-226C99,-226 68,-226 68,-226 62,-226 56,-220 56,-214 56,-214 56,-195 56,-195 56,-189 62,-183 68,-183 68,-183 99,-183 99,-183 105,-183 111,-189 111,-195 111,-195 111,-214 111,-214 111,-220 105,-226 99,-226"/> +<text text-anchor="middle" x="83.5" y="-200.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISSN</text> +</g> +<!-- I_ISSN->COINS_ISSN --> +<g id="edge10" class="edge"> +<title>I_ISSN->COINS_ISSN</title> +<path fill="none" stroke="#432776" d="M111.3006,-204.5C140.7795,-204.5 188.2531,-204.5 226.3512,-204.5"/> +<polygon fill="#432776" stroke="#432776" points="226.8254,-208.0001 236.8254,-204.5 226.8254,-201.0001 226.8254,-208.0001"/> +</g> +<!-- I_Language --> +<g id="node19" class="node"> +<title>I_Language</title> +<path fill="none" stroke="#a4a4a4" d="M106,-43C106,-43 61,-43 61,-43 55,-43 49,-37 49,-31 49,-31 49,-12 49,-12 49,-6 55,0 61,0 61,0 106,0 106,0 112,0 118,-6 118,-12 118,-12 118,-31 118,-31 118,-37 112,-43 106,-43"/> +<text text-anchor="middle" x="83.5" y="-17.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Langue</text> +</g> +<!-- I_Language->COINS_LANGUAGE --> +<g id="edge14" class="edge"> +<title>I_Language->COINS_LANGUAGE</title> +<path fill="none" stroke="#432776" d="M118.3969,-21.5C142.2293,-21.5 174.8326,-21.5 204.9858,-21.5"/> +<polygon fill="#432776" stroke="#432776" points="205.1016,-25.0001 215.1015,-21.5 205.1015,-18.0001 205.1016,-25.0001"/> +</g> +<!-- I_Date --> +<g id="node20" class="node"> +<title>I_Date</title> +<path fill="none" stroke="#a4a4a4" d="M98.5,-409C98.5,-409 68.5,-409 68.5,-409 62.5,-409 56.5,-403 56.5,-397 56.5,-397 56.5,-378 56.5,-378 56.5,-372 62.5,-366 68.5,-366 68.5,-366 98.5,-366 98.5,-366 104.5,-366 110.5,-372 110.5,-378 110.5,-378 110.5,-397 110.5,-397 110.5,-403 104.5,-409 98.5,-409"/> +<text text-anchor="middle" x="83.5" y="-383.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Date</text> +</g> +<!-- I_Date->COINS_DATE --> +<g id="edge8" class="edge"> +<title>I_Date->COINS_DATE</title> +<path fill="none" stroke="#432776" d="M110.8775,-387.5C140.2838,-387.5 187.9411,-387.5 226.1957,-387.5"/> +<polygon fill="#432776" stroke="#432776" points="226.2062,-391.0001 236.2062,-387.5 226.2061,-384.0001 226.2062,-391.0001"/> +</g> +<!-- I_Publisher --> +<g id="node21" class="node"> +<title>I_Publisher</title> +<path fill="none" stroke="#a4a4a4" d="M104,-470C104,-470 63,-470 63,-470 57,-470 51,-464 51,-458 51,-458 51,-439 51,-439 51,-433 57,-427 63,-427 63,-427 104,-427 104,-427 110,-427 116,-433 116,-439 116,-439 116,-458 116,-458 116,-464 110,-470 104,-470"/> +<text text-anchor="middle" x="83.5" y="-444.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Éditeur</text> +</g> +<!-- I_Publisher->COINS_PUBLISHER --> +<g id="edge7" class="edge"> +<title>I_Publisher->COINS_PUBLISHER</title> +<path fill="none" stroke="#432776" d="M116.1155,-448.5C140.7917,-448.5 175.7527,-448.5 207.59,-448.5"/> +<polygon fill="#432776" stroke="#432776" points="207.8,-452.0001 217.8,-448.5 207.8,-445.0001 207.8,-452.0001"/> +</g> +<!-- I_Description --> +<g id="node22" class="node"> +<title>I_Description</title> +<path fill="none" stroke="#a4a4a4" d="M115,-531C115,-531 52,-531 52,-531 46,-531 40,-525 40,-519 40,-519 40,-500 40,-500 40,-494 46,-488 52,-488 52,-488 115,-488 115,-488 121,-488 127,-494 127,-500 127,-500 127,-519 127,-519 127,-525 121,-531 115,-531"/> +<text text-anchor="middle" x="83.5" y="-505.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Description</text> +</g> +<!-- I_Description->COINS_DESCRIPTION --> +<g id="edge6" class="edge"> +<title>I_Description->COINS_DESCRIPTION</title> +<path fill="none" stroke="#432776" d="M127.0486,-509.5C146.3303,-509.5 169.808,-509.5 192.7541,-509.5"/> +<polygon fill="#432776" stroke="#432776" points="192.8907,-513.0001 202.8907,-509.5 192.8907,-506.0001 192.8907,-513.0001"/> +</g> +<!-- I_Type --> +<g id="node23" class="node"> +<title>I_Type</title> +<path fill="none" stroke="#a4a4a4" d="M99,-622C99,-622 68,-622 68,-622 62,-622 56,-616 56,-610 56,-610 56,-591 56,-591 56,-585 62,-579 68,-579 68,-579 99,-579 99,-579 105,-579 111,-585 111,-591 111,-591 111,-610 111,-610 111,-616 105,-622 99,-622"/> +<text text-anchor="middle" x="83.5" y="-596.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Type</text> +</g> +<!-- I_Type->COINS_GENRE --> +<g id="edge5" class="edge"> +<title>I_Type->COINS_GENRE</title> +<path fill="none" stroke="#432776" d="M111.3006,-606.7997C138.6951,-613.0073 181.6296,-622.7363 218.1388,-631.0093"/> +<polygon fill="#432776" stroke="#432776" points="217.7214,-634.5034 228.2476,-633.3 219.2684,-627.6764 217.7214,-634.5034"/> +</g> +<!-- I_Type->COINS_TYPE --> +<g id="edge4" class="edge"> +<title>I_Type->COINS_TYPE</title> +<path fill="none" stroke="#432776" d="M111.3006,-598.4458C140.4817,-596.2895 187.2959,-592.8304 225.1938,-590.03"/> +<polygon fill="#432776" stroke="#432776" points="225.9096,-593.4868 235.6245,-589.2593 225.3937,-586.5058 225.9096,-593.4868"/> +</g> +<!-- I_Author --> +<g id="node24" class="node"> +<title>I_Author</title> +<path fill="none" stroke="#a4a4a4" d="M106,-729C106,-729 61,-729 61,-729 55,-729 49,-723 49,-717 49,-717 49,-698 49,-698 49,-692 55,-686 61,-686 61,-686 106,-686 106,-686 112,-686 118,-692 118,-698 118,-698 118,-717 118,-717 118,-723 112,-729 106,-729"/> +<text text-anchor="middle" x="83.5" y="-703.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Auteurs</text> +</g> +<!-- I_Author->COINS_AU --> +<g id="edge3" class="edge"> +<title>I_Author->COINS_AU</title> +<path fill="none" stroke="#432776" d="M118.3969,-707.5C148.0085,-707.5 191.1606,-707.5 226.3294,-707.5"/> +<polygon fill="#432776" stroke="#432776" points="226.4902,-711.0001 236.4901,-707.5 226.4901,-704.0001 226.4902,-711.0001"/> +</g> +<!-- I_Title --> +<g id="node25" class="node"> +<title>I_Title</title> +<path fill="none" stroke="#a4a4a4" d="M98.5,-790C98.5,-790 68.5,-790 68.5,-790 62.5,-790 56.5,-784 56.5,-778 56.5,-778 56.5,-759 56.5,-759 56.5,-753 62.5,-747 68.5,-747 68.5,-747 98.5,-747 98.5,-747 104.5,-747 110.5,-753 110.5,-759 110.5,-759 110.5,-778 110.5,-778 110.5,-784 104.5,-790 98.5,-790"/> +<text text-anchor="middle" x="83.5" y="-764.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Titre</text> +</g> +<!-- I_Title->COINS_TITLE --> +<g id="edge2" class="edge"> +<title>I_Title->COINS_TITLE</title> +<path fill="none" stroke="#432776" d="M110.8775,-768.5C141.2772,-768.5 191.182,-768.5 230.0396,-768.5"/> +<polygon fill="#432776" stroke="#432776" points="230.1703,-772.0001 240.1702,-768.5 230.1702,-765.0001 230.1703,-772.0001"/> +</g> +<!-- Ishtar --> +<g id="node26" class="node"> +<title>Ishtar</title> +<polygon fill="#432776" stroke="#432776" points="112.5,-851 109.5,-855 88.5,-855 85.5,-851 54.5,-851 54.5,-808 112.5,-808 112.5,-851"/> +<text text-anchor="middle" x="83.5" y="-825.8" font-family="liberationsansnarrow" font-size="14.00" fill="#ffffff">Ishtar</text> +</g> +<!-- Ishtar->COinS --> +</g> +</svg> diff --git a/docs/fr/source/media-src/ishtar-dublincore.svg b/docs/fr/source/media-src/ishtar-dublincore.svg new file mode 100644 index 000000000..22c7c98d1 --- /dev/null +++ b/docs/fr/source/media-src/ishtar-dublincore.svg @@ -0,0 +1,320 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" + "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<!-- Generated by graphviz version 2.40.1 (20161225.0304) + --> +<!-- Title: ishtar_dc Pages: 1 --> +<svg width="378pt" height="1149pt" + viewBox="0.00 0.00 378.00 1149.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1145)"> +<title>ishtar_dc</title> +<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-1145 374,-1145 374,4 -4,4"/> +<!-- DC_Coverage --> +<g id="node1" class="node"> +<title>DC_Coverage</title> +<path fill="none" stroke="#a4a4a4" d="M349,-43C349,-43 224,-43 224,-43 218,-43 212,-37 212,-31 212,-31 212,-12 212,-12 212,-6 218,0 224,0 224,0 349,0 349,0 355,0 361,-6 361,-12 361,-12 361,-31 361,-31 361,-37 355,-43 349,-43"/> +<text text-anchor="middle" x="286.5" y="-17.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Couverture (Coverage)</text> +</g> +<!-- DC_Relation --> +<g id="node2" class="node"> +<title>DC_Relation</title> +<path fill="none" stroke="#a4a4a4" d="M310,-165C310,-165 263,-165 263,-165 257,-165 251,-159 251,-153 251,-153 251,-134 251,-134 251,-128 257,-122 263,-122 263,-122 310,-122 310,-122 316,-122 322,-128 322,-134 322,-134 322,-153 322,-153 322,-159 316,-165 310,-165"/> +<text text-anchor="middle" x="286.5" y="-139.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Relation</text> +</g> +<!-- DC_Rights --> +<g id="node3" class="node"> +<title>DC_Rights</title> +<path fill="none" stroke="#a4a4a4" d="M358,-226C358,-226 215,-226 215,-226 209,-226 203,-220 203,-214 203,-214 203,-195 203,-195 203,-189 209,-183 215,-183 215,-183 358,-183 358,-183 364,-183 370,-189 370,-195 370,-195 370,-214 370,-214 370,-220 364,-226 358,-226"/> +<text text-anchor="middle" x="286.5" y="-200.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Gestion des droits (Rights)</text> +</g> +<!-- DC_Language --> +<g id="node4" class="node"> +<title>DC_Language</title> +<path fill="none" stroke="#a4a4a4" d="M341.5,-287C341.5,-287 231.5,-287 231.5,-287 225.5,-287 219.5,-281 219.5,-275 219.5,-275 219.5,-256 219.5,-256 219.5,-250 225.5,-244 231.5,-244 231.5,-244 341.5,-244 341.5,-244 347.5,-244 353.5,-250 353.5,-256 353.5,-256 353.5,-275 353.5,-275 353.5,-281 347.5,-287 341.5,-287"/> +<text text-anchor="middle" x="286.5" y="-261.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Langue (Language)</text> +</g> +<!-- DC_Source --> +<g id="node5" class="node"> +<title>DC_Source</title> +<path fill="none" stroke="#a4a4a4" d="M307.5,-104C307.5,-104 265.5,-104 265.5,-104 259.5,-104 253.5,-98 253.5,-92 253.5,-92 253.5,-73 253.5,-73 253.5,-67 259.5,-61 265.5,-61 265.5,-61 307.5,-61 307.5,-61 313.5,-61 319.5,-67 319.5,-73 319.5,-73 319.5,-92 319.5,-92 319.5,-98 313.5,-104 307.5,-104"/> +<text text-anchor="middle" x="286.5" y="-78.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source</text> +</g> +<!-- DC_Identifier --> +<g id="node6" class="node"> +<title>DC_Identifier</title> +<path fill="none" stroke="#a4a4a4" d="M341.5,-439C341.5,-439 231.5,-439 231.5,-439 225.5,-439 219.5,-433 219.5,-427 219.5,-427 219.5,-408 219.5,-408 219.5,-402 225.5,-396 231.5,-396 231.5,-396 341.5,-396 341.5,-396 347.5,-396 353.5,-402 353.5,-408 353.5,-408 353.5,-427 353.5,-427 353.5,-433 347.5,-439 341.5,-439"/> +<text text-anchor="middle" x="286.5" y="-413.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Identifiant (Identifier)</text> +</g> +<!-- DC_Format --> +<g id="node7" class="node"> +<title>DC_Format</title> +<path fill="none" stroke="#a4a4a4" d="M307.5,-592C307.5,-592 265.5,-592 265.5,-592 259.5,-592 253.5,-586 253.5,-580 253.5,-580 253.5,-561 253.5,-561 253.5,-555 259.5,-549 265.5,-549 265.5,-549 307.5,-549 307.5,-549 313.5,-549 319.5,-555 319.5,-561 319.5,-561 319.5,-580 319.5,-580 319.5,-586 313.5,-592 307.5,-592"/> +<text text-anchor="middle" x="286.5" y="-566.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Format</text> +</g> +<!-- DC_Type --> +<g id="node8" class="node"> +<title>DC_Type</title> +<path fill="none" stroke="#a4a4a4" d="M302,-653C302,-653 271,-653 271,-653 265,-653 259,-647 259,-641 259,-641 259,-622 259,-622 259,-616 265,-610 271,-610 271,-610 302,-610 302,-610 308,-610 314,-616 314,-622 314,-622 314,-641 314,-641 314,-647 308,-653 302,-653"/> +<text text-anchor="middle" x="286.5" y="-627.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Type</text> +</g> +<!-- DC_Date --> +<g id="node9" class="node"> +<title>DC_Date</title> +<path fill="none" stroke="#a4a4a4" d="M301.5,-714C301.5,-714 271.5,-714 271.5,-714 265.5,-714 259.5,-708 259.5,-702 259.5,-702 259.5,-683 259.5,-683 259.5,-677 265.5,-671 271.5,-671 271.5,-671 301.5,-671 301.5,-671 307.5,-671 313.5,-677 313.5,-683 313.5,-683 313.5,-702 313.5,-702 313.5,-708 307.5,-714 301.5,-714"/> +<text text-anchor="middle" x="286.5" y="-688.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Date</text> +</g> +<!-- DC_Contributor --> +<g id="node10" class="node"> +<title>DC_Contributor</title> +<path fill="none" stroke="#a4a4a4" d="M355,-836C355,-836 218,-836 218,-836 212,-836 206,-830 206,-824 206,-824 206,-805 206,-805 206,-799 212,-793 218,-793 218,-793 355,-793 355,-793 361,-793 367,-799 367,-805 367,-805 367,-824 367,-824 367,-830 361,-836 355,-836"/> +<text text-anchor="middle" x="286.5" y="-810.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Contributeur (Contributor)</text> +</g> +<!-- DC_Publisher --> +<g id="node11" class="node"> +<title>DC_Publisher</title> +<path fill="none" stroke="#a4a4a4" d="M337,-897C337,-897 236,-897 236,-897 230,-897 224,-891 224,-885 224,-885 224,-866 224,-866 224,-860 230,-854 236,-854 236,-854 337,-854 337,-854 343,-854 349,-860 349,-866 349,-866 349,-885 349,-885 349,-891 343,-897 337,-897"/> +<text text-anchor="middle" x="286.5" y="-871.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Éditeur (Publisher)</text> +</g> +<!-- DC_Description --> +<g id="node12" class="node"> +<title>DC_Description</title> +<path fill="none" stroke="#a4a4a4" d="M318,-958C318,-958 255,-958 255,-958 249,-958 243,-952 243,-946 243,-946 243,-927 243,-927 243,-921 249,-915 255,-915 255,-915 318,-915 318,-915 324,-915 330,-921 330,-927 330,-927 330,-946 330,-946 330,-952 324,-958 318,-958"/> +<text text-anchor="middle" x="286.5" y="-932.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Description</text> +</g> +<!-- DC_Subject --> +<g id="node13" class="node"> +<title>DC_Subject</title> +<path fill="none" stroke="#a4a4a4" d="M326.5,-1019C326.5,-1019 246.5,-1019 246.5,-1019 240.5,-1019 234.5,-1013 234.5,-1007 234.5,-1007 234.5,-988 234.5,-988 234.5,-982 240.5,-976 246.5,-976 246.5,-976 326.5,-976 326.5,-976 332.5,-976 338.5,-982 338.5,-988 338.5,-988 338.5,-1007 338.5,-1007 338.5,-1013 332.5,-1019 326.5,-1019"/> +<text text-anchor="middle" x="286.5" y="-993.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Sujet (Subject)</text> +</g> +<!-- DC_Creator --> +<g id="node14" class="node"> +<title>DC_Creator</title> +<path fill="none" stroke="#a4a4a4" d="M336.5,-775C336.5,-775 236.5,-775 236.5,-775 230.5,-775 224.5,-769 224.5,-763 224.5,-763 224.5,-744 224.5,-744 224.5,-738 230.5,-732 236.5,-732 236.5,-732 336.5,-732 336.5,-732 342.5,-732 348.5,-738 348.5,-744 348.5,-744 348.5,-763 348.5,-763 348.5,-769 342.5,-775 336.5,-775"/> +<text text-anchor="middle" x="286.5" y="-749.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Créateur (Creator)</text> +</g> +<!-- DC_Title --> +<g id="node15" class="node"> +<title>DC_Title</title> +<path fill="none" stroke="#a4a4a4" d="M316.5,-1080C316.5,-1080 256.5,-1080 256.5,-1080 250.5,-1080 244.5,-1074 244.5,-1068 244.5,-1068 244.5,-1049 244.5,-1049 244.5,-1043 250.5,-1037 256.5,-1037 256.5,-1037 316.5,-1037 316.5,-1037 322.5,-1037 328.5,-1043 328.5,-1049 328.5,-1049 328.5,-1068 328.5,-1068 328.5,-1074 322.5,-1080 316.5,-1080"/> +<text text-anchor="middle" x="286.5" y="-1054.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Titre (Title)</text> +</g> +<!-- DublinCore --> +<g id="node16" class="node"> +<title>DublinCore</title> +<polygon fill="#432776" stroke="#432776" points="331.5,-1141 328.5,-1145 307.5,-1145 304.5,-1141 241.5,-1141 241.5,-1098 331.5,-1098 331.5,-1141"/> +<text text-anchor="middle" x="286.5" y="-1115.8" font-family="liberationsansnarrow" font-size="14.00" fill="#ffffff">Dublin Core</text> +</g> +<!-- I_Rights --> +<g id="node17" class="node"> +<title>I_Rights</title> +<path fill="none" stroke="#a4a4a4" d="M123.5,-226C123.5,-226 43.5,-226 43.5,-226 37.5,-226 31.5,-220 31.5,-214 31.5,-214 31.5,-195 31.5,-195 31.5,-189 37.5,-183 43.5,-183 43.5,-183 123.5,-183 123.5,-183 129.5,-183 135.5,-189 135.5,-195 135.5,-195 135.5,-214 135.5,-214 135.5,-220 129.5,-226 123.5,-226"/> +<text text-anchor="middle" x="83.5" y="-200.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Droits/licences</text> +</g> +<!-- I_Rights->DC_Rights --> +<g id="edge18" class="edge"> +<title>I_Rights->DC_Rights</title> +<path fill="none" stroke="#432776" d="M135.5139,-204.5C152.9201,-204.5 172.8969,-204.5 192.4987,-204.5"/> +<polygon fill="#432776" stroke="#432776" points="192.6994,-208.0001 202.6994,-204.5 192.6994,-201.0001 192.6994,-208.0001"/> +</g> +<!-- I_Source1 --> +<g id="node18" class="node"> +<title>I_Source1</title> +<path fill="none" stroke="#a4a4a4" d="M155,-165C155,-165 12,-165 12,-165 6,-165 0,-159 0,-153 0,-153 0,-134 0,-134 0,-128 6,-122 12,-122 12,-122 155,-122 155,-122 161,-122 167,-128 167,-134 167,-134 167,-153 167,-153 167,-159 161,-165 155,-165"/> +<text text-anchor="middle" x="83.5" y="-139.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source - Document parent</text> +</g> +<!-- I_Source1->DC_Relation --> +<g id="edge16" class="edge"> +<title>I_Source1->DC_Relation</title> +<path fill="none" stroke="#432776" d="M167.2399,-143.5C192.2999,-143.5 218.8506,-143.5 240.523,-143.5"/> +<polygon fill="#432776" stroke="#432776" points="240.7424,-147.0001 250.7423,-143.5 240.7423,-140.0001 240.7424,-147.0001"/> +</g> +<!-- I_Source1->DC_Source --> +<g id="edge15" class="edge"> +<title>I_Source1->DC_Source</title> +<path fill="none" stroke="#432776" d="M155.0702,-121.9937C184.5968,-113.1212 217.8344,-103.1335 243.4973,-95.422"/> +<polygon fill="#432776" stroke="#432776" points="244.7205,-98.7091 253.2902,-92.4793 242.706,-92.0052 244.7205,-98.7091"/> +</g> +<!-- I_Source2 --> +<g id="node19" class="node"> +<title>I_Source2</title> +<path fill="none" stroke="#a4a4a4" d="M137.5,-104C137.5,-104 29.5,-104 29.5,-104 23.5,-104 17.5,-98 17.5,-92 17.5,-92 17.5,-73 17.5,-73 17.5,-67 23.5,-61 29.5,-61 29.5,-61 137.5,-61 137.5,-61 143.5,-61 149.5,-67 149.5,-73 149.5,-73 149.5,-92 149.5,-92 149.5,-98 143.5,-104 137.5,-104"/> +<text text-anchor="middle" x="83.5" y="-78.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Source - Saisie libre</text> +</g> +<!-- I_Source2->DC_Source --> +<g id="edge17" class="edge"> +<title>I_Source2->DC_Source</title> +<path fill="none" stroke="#432776" d="M149.6889,-82.5C180.3318,-82.5 215.88,-82.5 243.0595,-82.5"/> +<polygon fill="#432776" stroke="#432776" points="243.4098,-86.0001 253.4097,-82.5 243.4097,-79.0001 243.4098,-86.0001"/> +</g> +<!-- I_ISBN --> +<g id="node20" class="node"> +<title>I_ISBN</title> +<path fill="none" stroke="#a4a4a4" d="M99,-531C99,-531 68,-531 68,-531 62,-531 56,-525 56,-519 56,-519 56,-500 56,-500 56,-494 62,-488 68,-488 68,-488 99,-488 99,-488 105,-488 111,-494 111,-500 111,-500 111,-519 111,-519 111,-525 105,-531 99,-531"/> +<text text-anchor="middle" x="83.5" y="-505.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISBN</text> +</g> +<!-- I_ISBN->DC_Identifier --> +<g id="edge13" class="edge"> +<title>I_ISBN->DC_Identifier</title> +<path fill="none" stroke="#432776" d="M111.3006,-496.9007C141.532,-483.1998 190.6885,-460.922 229.2498,-443.4459"/> +<polygon fill="#432776" stroke="#432776" points="231.1438,-446.4303 238.8073,-439.1144 228.2543,-440.0545 231.1438,-446.4303"/> +</g> +<!-- I_ISSN --> +<g id="node21" class="node"> +<title>I_ISSN</title> +<path fill="none" stroke="#a4a4a4" d="M99,-470C99,-470 68,-470 68,-470 62,-470 56,-464 56,-458 56,-458 56,-439 56,-439 56,-433 62,-427 68,-427 68,-427 99,-427 99,-427 105,-427 111,-433 111,-439 111,-439 111,-458 111,-458 111,-464 105,-470 99,-470"/> +<text text-anchor="middle" x="83.5" y="-444.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">ISSN</text> +</g> +<!-- I_ISSN->DC_Identifier --> +<g id="edge14" class="edge"> +<title>I_ISSN->DC_Identifier</title> +<path fill="none" stroke="#432776" d="M111.3006,-444.2546C136.5026,-440.406 174.8566,-434.549 209.2605,-429.2952"/> +<polygon fill="#432776" stroke="#432776" points="209.9599,-432.7291 219.3169,-427.7595 208.9031,-425.8093 209.9599,-432.7291"/> +</g> +<!-- I_Language --> +<g id="node22" class="node"> +<title>I_Language</title> +<path fill="none" stroke="#a4a4a4" d="M106,-287C106,-287 61,-287 61,-287 55,-287 49,-281 49,-275 49,-275 49,-256 49,-256 49,-250 55,-244 61,-244 61,-244 106,-244 106,-244 112,-244 118,-250 118,-256 118,-256 118,-275 118,-275 118,-281 112,-287 106,-287"/> +<text text-anchor="middle" x="83.5" y="-261.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Langue</text> +</g> +<!-- I_Language->DC_Language --> +<g id="edge19" class="edge"> +<title>I_Language->DC_Language</title> +<path fill="none" stroke="#432776" d="M118.3969,-265.5C143.3558,-265.5 177.9345,-265.5 209.2441,-265.5"/> +<polygon fill="#432776" stroke="#432776" points="209.2784,-269.0001 219.2784,-265.5 209.2783,-262.0001 209.2784,-269.0001"/> +</g> +<!-- I_URL --> +<g id="node23" class="node"> +<title>I_URL</title> +<path fill="none" stroke="#a4a4a4" d="M98.5,-409C98.5,-409 68.5,-409 68.5,-409 62.5,-409 56.5,-403 56.5,-397 56.5,-397 56.5,-378 56.5,-378 56.5,-372 62.5,-366 68.5,-366 68.5,-366 98.5,-366 98.5,-366 104.5,-366 110.5,-372 110.5,-378 110.5,-378 110.5,-397 110.5,-397 110.5,-403 104.5,-409 98.5,-409"/> +<text text-anchor="middle" x="83.5" y="-383.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Url</text> +</g> +<!-- I_URL->DC_Identifier --> +<g id="edge12" class="edge"> +<title>I_URL->DC_Identifier</title> +<path fill="none" stroke="#432776" d="M110.8775,-391.5459C136.0935,-395.2724 174.7297,-400.9822 209.3496,-406.0985"/> +<polygon fill="#432776" stroke="#432776" points="209.0633,-409.5941 219.4676,-407.5937 210.0868,-402.6693 209.0633,-409.5941"/> +</g> +<!-- I_URL_Ishtar --> +<g id="node24" class="node"> +<title>I_URL_Ishtar</title> +<path fill="none" stroke="#a4a4a4" d="M109,-348C109,-348 58,-348 58,-348 52,-348 46,-342 46,-336 46,-336 46,-317 46,-317 46,-311 52,-305 58,-305 58,-305 109,-305 109,-305 115,-305 121,-311 121,-317 121,-317 121,-336 121,-336 121,-342 115,-348 109,-348"/> +<text text-anchor="middle" x="83.5" y="-322.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Url Ishtar</text> +</g> +<!-- I_URL_Ishtar->DC_Identifier --> +<g id="edge11" class="edge"> +<title>I_URL_Ishtar->DC_Identifier</title> +<path fill="none" stroke="#432776" d="M121.207,-343.4031C151.3913,-356.934 194.2335,-376.1391 228.7376,-391.6065"/> +<polygon fill="#432776" stroke="#432776" points="227.6741,-394.9653 238.231,-395.8622 230.5376,-388.5778 227.6741,-394.9653"/> +</g> +<!-- I_Format --> +<g id="node25" class="node"> +<title>I_Format</title> +<path fill="none" stroke="#a4a4a4" d="M104.5,-592C104.5,-592 62.5,-592 62.5,-592 56.5,-592 50.5,-586 50.5,-580 50.5,-580 50.5,-561 50.5,-561 50.5,-555 56.5,-549 62.5,-549 62.5,-549 104.5,-549 104.5,-549 110.5,-549 116.5,-555 116.5,-561 116.5,-561 116.5,-580 116.5,-580 116.5,-586 110.5,-592 104.5,-592"/> +<text text-anchor="middle" x="83.5" y="-566.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Format</text> +</g> +<!-- I_Format->DC_Format --> +<g id="edge10" class="edge"> +<title>I_Format->DC_Format</title> +<path fill="none" stroke="#432776" d="M116.5673,-570.5C151.0723,-570.5 205.3273,-570.5 243.2224,-570.5"/> +<polygon fill="#432776" stroke="#432776" points="243.4469,-574.0001 253.4469,-570.5 243.4469,-567.0001 243.4469,-574.0001"/> +</g> +<!-- I_Type --> +<g id="node26" class="node"> +<title>I_Type</title> +<path fill="none" stroke="#a4a4a4" d="M99,-653C99,-653 68,-653 68,-653 62,-653 56,-647 56,-641 56,-641 56,-622 56,-622 56,-616 62,-610 68,-610 68,-610 99,-610 99,-610 105,-610 111,-616 111,-622 111,-622 111,-641 111,-641 111,-647 105,-653 99,-653"/> +<text text-anchor="middle" x="83.5" y="-627.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Type</text> +</g> +<!-- I_Type->DC_Type --> +<g id="edge9" class="edge"> +<title>I_Type->DC_Type</title> +<path fill="none" stroke="#432776" d="M111.3006,-631.5C146.8862,-631.5 208.6944,-631.5 248.5776,-631.5"/> +<polygon fill="#432776" stroke="#432776" points="248.7102,-635.0001 258.7101,-631.5 248.7101,-628.0001 248.7102,-635.0001"/> +</g> +<!-- I_Date --> +<g id="node27" class="node"> +<title>I_Date</title> +<path fill="none" stroke="#a4a4a4" d="M98.5,-714C98.5,-714 68.5,-714 68.5,-714 62.5,-714 56.5,-708 56.5,-702 56.5,-702 56.5,-683 56.5,-683 56.5,-677 62.5,-671 68.5,-671 68.5,-671 98.5,-671 98.5,-671 104.5,-671 110.5,-677 110.5,-683 110.5,-683 110.5,-702 110.5,-702 110.5,-708 104.5,-714 98.5,-714"/> +<text text-anchor="middle" x="83.5" y="-688.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Date</text> +</g> +<!-- I_Date->DC_Date --> +<g id="edge8" class="edge"> +<title>I_Date->DC_Date</title> +<path fill="none" stroke="#432776" d="M110.8775,-692.5C146.5425,-692.5 209.0544,-692.5 249.0773,-692.5"/> +<polygon fill="#432776" stroke="#432776" points="249.2329,-696.0001 259.2329,-692.5 249.2328,-689.0001 249.2329,-696.0001"/> +</g> +<!-- I_Publisher --> +<g id="node28" class="node"> +<title>I_Publisher</title> +<path fill="none" stroke="#a4a4a4" d="M104,-897C104,-897 63,-897 63,-897 57,-897 51,-891 51,-885 51,-885 51,-866 51,-866 51,-860 57,-854 63,-854 63,-854 104,-854 104,-854 110,-854 116,-860 116,-866 116,-866 116,-885 116,-885 116,-891 110,-897 104,-897"/> +<text text-anchor="middle" x="83.5" y="-871.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Éditeur</text> +</g> +<!-- I_Publisher->DC_Publisher --> +<g id="edge7" class="edge"> +<title>I_Publisher->DC_Publisher</title> +<path fill="none" stroke="#432776" d="M116.1155,-875.5C142.3205,-875.5 180.1241,-875.5 213.4682,-875.5"/> +<polygon fill="#432776" stroke="#432776" points="213.6554,-879.0001 223.6554,-875.5 213.6554,-872.0001 213.6554,-879.0001"/> +</g> +<!-- I_Description --> +<g id="node29" class="node"> +<title>I_Description</title> +<path fill="none" stroke="#a4a4a4" d="M115,-958C115,-958 52,-958 52,-958 46,-958 40,-952 40,-946 40,-946 40,-927 40,-927 40,-921 46,-915 52,-915 52,-915 115,-915 115,-915 121,-915 127,-921 127,-927 127,-927 127,-946 127,-946 127,-952 121,-958 115,-958"/> +<text text-anchor="middle" x="83.5" y="-932.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Description</text> +</g> +<!-- I_Description->DC_Description --> +<g id="edge6" class="edge"> +<title>I_Description->DC_Description</title> +<path fill="none" stroke="#432776" d="M127.0486,-936.5C157.8497,-936.5 199.3581,-936.5 232.3027,-936.5"/> +<polygon fill="#432776" stroke="#432776" points="232.6737,-940.0001 242.6737,-936.5 232.6736,-933.0001 232.6737,-940.0001"/> +</g> +<!-- I_Tags --> +<g id="node30" class="node"> +<title>I_Tags</title> +<path fill="none" stroke="#a4a4a4" d="M111.5,-1019C111.5,-1019 55.5,-1019 55.5,-1019 49.5,-1019 43.5,-1013 43.5,-1007 43.5,-1007 43.5,-988 43.5,-988 43.5,-982 49.5,-976 55.5,-976 55.5,-976 111.5,-976 111.5,-976 117.5,-976 123.5,-982 123.5,-988 123.5,-988 123.5,-1007 123.5,-1007 123.5,-1013 117.5,-1019 111.5,-1019"/> +<text text-anchor="middle" x="83.5" y="-993.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Étiquettes</text> +</g> +<!-- I_Tags->DC_Subject --> +<g id="edge5" class="edge"> +<title>I_Tags->DC_Subject</title> +<path fill="none" stroke="#432776" d="M123.6063,-997.5C152.1745,-997.5 191.1366,-997.5 223.7926,-997.5"/> +<polygon fill="#432776" stroke="#432776" points="224.1524,-1001.0001 234.1524,-997.5 224.1523,-994.0001 224.1524,-1001.0001"/> +</g> +<!-- I_Author --> +<g id="node31" class="node"> +<title>I_Author</title> +<path fill="none" stroke="#a4a4a4" d="M106,-806C106,-806 61,-806 61,-806 55,-806 49,-800 49,-794 49,-794 49,-775 49,-775 49,-769 55,-763 61,-763 61,-763 106,-763 106,-763 112,-763 118,-769 118,-775 118,-775 118,-794 118,-794 118,-800 112,-806 106,-806"/> +<text text-anchor="middle" x="83.5" y="-780.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Auteurs</text> +</g> +<!-- I_Author->DC_Contributor --> +<g id="edge4" class="edge"> +<title>I_Author->DC_Contributor</title> +<path fill="none" stroke="#432776" d="M118.3969,-789.6572C139.8009,-792.8203 168.2795,-797.029 195.704,-801.0819"/> +<polygon fill="#432776" stroke="#432776" points="195.3407,-804.5661 205.745,-802.5658 196.3642,-797.6413 195.3407,-804.5661"/> +</g> +<!-- I_Author->DC_Creator --> +<g id="edge3" class="edge"> +<title>I_Author->DC_Creator</title> +<path fill="none" stroke="#432776" d="M118.3969,-779.1709C144.6966,-775.1547 181.6775,-769.5074 214.2599,-764.5317"/> +<polygon fill="#432776" stroke="#432776" points="214.8567,-767.9813 224.2137,-763.0117 213.7999,-761.0615 214.8567,-767.9813"/> +</g> +<!-- I_Title --> +<g id="node32" class="node"> +<title>I_Title</title> +<path fill="none" stroke="#a4a4a4" d="M98.5,-1080C98.5,-1080 68.5,-1080 68.5,-1080 62.5,-1080 56.5,-1074 56.5,-1068 56.5,-1068 56.5,-1049 56.5,-1049 56.5,-1043 62.5,-1037 68.5,-1037 68.5,-1037 98.5,-1037 98.5,-1037 104.5,-1037 110.5,-1043 110.5,-1049 110.5,-1049 110.5,-1068 110.5,-1068 110.5,-1074 104.5,-1080 98.5,-1080"/> +<text text-anchor="middle" x="83.5" y="-1054.8" font-family="liberationsansnarrow" font-size="14.00" fill="#333333">Titre</text> +</g> +<!-- I_Title->DC_Title --> +<g id="edge2" class="edge"> +<title>I_Title->DC_Title</title> +<path fill="none" stroke="#432776" d="M110.8775,-1058.5C142.37,-1058.5 194.7951,-1058.5 234.1858,-1058.5"/> +<polygon fill="#432776" stroke="#432776" points="234.4094,-1062.0001 244.4094,-1058.5 234.4094,-1055.0001 234.4094,-1062.0001"/> +</g> +<!-- Ishtar --> +<g id="node33" class="node"> +<title>Ishtar</title> +<polygon fill="#432776" stroke="#432776" points="112.5,-1141 109.5,-1145 88.5,-1145 85.5,-1141 54.5,-1141 54.5,-1098 112.5,-1098 112.5,-1141"/> +<text text-anchor="middle" x="83.5" y="-1115.8" font-family="liberationsansnarrow" font-size="14.00" fill="#ffffff">Ishtar</text> +</g> +<!-- Ishtar->DublinCore --> +</g> +</svg> diff --git a/docs/fr/source/principes.rst b/docs/fr/source/principes.rst index 9f1770f71..172764c95 100644 --- a/docs/fr/source/principes.rst +++ b/docs/fr/source/principes.rst @@ -98,7 +98,7 @@ Structure de la base de données La base de données n'est pas détaillée table par table dans cette documentation mais nous allons vous présenter les grandes notions utilisées. La structure présentée peut apparaître rigide mais c'est un mal nécessaire pour une certaine standardisation de données archéologiques. Par ailleurs les concepts sont très larges et d'expérience s'adapte très bien à la plupart des contextes. -.. image:: _static/graphique-structure-ishtar.png +.. image:: _static/graphique_structure_ishtar.png Opération archéologique |