{"id":3747,"date":"2025-08-14T15:12:07","date_gmt":"2025-08-14T14:12:07","guid":{"rendered":"https:\/\/workboot.fr\/ciela\/?page_id=3747"},"modified":"2025-08-14T15:18:33","modified_gmt":"2025-08-14T14:18:33","slug":"zenity","status":"publish","type":"page","link":"https:\/\/workboot.fr\/ciela\/zenity\/","title":{"rendered":"Zenity"},"content":{"rendered":"\n<nav aria-label=\"Table des mati\u00e8res\" class=\"wp-block-table-of-contents\"><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#zenity-cheat-sheet\">Zenity Cheat Sheet<\/a><ol><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#1-messages-et-dialogues-simples\">1\ufe0f\u20e3 Messages et dialogues simples<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#2-entree-utilisateur\">2\ufe0f\u20e3 Entr\u00e9e utilisateur<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#3-selecteurs\">3\ufe0f\u20e3 S\u00e9lecteurs<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#4-listes\">4\ufe0f\u20e3 Listes<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#5-progression-et-notifications\">5\ufe0f\u20e3 Progression et notifications<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#6-options-utiles\">6\ufe0f\u20e3 Options utiles<\/a><\/li><li><a class=\"wp-block-table-of-contents__entry\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/#code-de-test\">code de test <\/a><\/li><\/ol><\/li><\/ol><\/nav>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"zenity-cheat-sheet\">Zenity Cheat Sheet<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">installation<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt install zenity<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Syntaxe g\u00e9n\u00e9rale :<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>zenity &#91;TYPE] &#91;OPTIONS]<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-messages-et-dialogues-simples\">1\ufe0f\u20e3 Messages et dialogues simples<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Commande<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>Info<\/td><td><code>zenity --info --text=\"Message\"<\/code><\/td><td>Bo\u00eete d\u2019info avec OK<\/td><\/tr><tr><td>Avertissement<\/td><td><code>zenity --warning --text=\"Attention\"<\/code><\/td><td>Bo\u00eete jaune<\/td><\/tr><tr><td>Erreur<\/td><td><code>zenity --error --text=\"Erreur\"<\/code><\/td><td>Bo\u00eete rouge<\/td><\/tr><tr><td>Question Oui\/Non<\/td><td><code>zenity --question --text=\"Continuer ?\"<\/code><\/td><td>Retour 0=Oui, 1=Non<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-entree-utilisateur\">2\ufe0f\u20e3 Entr\u00e9e utilisateur<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Commande<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>Texte simple<\/td><td><code>nom=$(zenity --entry --text=\"Votre nom ?\")<\/code><\/td><td>Retourne la valeur dans <code>$nom<\/code><\/td><\/tr><tr><td>Texte par d\u00e9faut<\/td><td><code>zenity --entry --text=\"Nom ?\" --entry-text=\"Jean\"<\/code><\/td><td>Valeur initiale pr\u00e9remplie<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-selecteurs\">3\ufe0f\u20e3 S\u00e9lecteurs<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Commande<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>Fichier<\/td><td><code>fichier=$(zenity --file-selection --title=\"Choisir un fichier\")<\/code><\/td><td>Retourne chemin complet<\/td><\/tr><tr><td>Dossier<\/td><td><code>dossier=$(zenity --file-selection --directory --title=\"Choisir un dossier\")<\/code><\/td><td>Retourne dossier choisi<\/td><\/tr><tr><td>Date<\/td><td><code>date=$(zenity --calendar --title=\"Choisir une date\")<\/code><\/td><td>Format YYYY-MM-DD<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-listes\">4\ufe0f\u20e3 Listes<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Commande<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>Liste simple<\/td><td><code>zenity --list --column=\"Fruits\" \"Pomme\" \"Banane\"<\/code><\/td><td>Retourne s\u00e9lection<\/td><\/tr><tr><td>Liste \u00e0 cocher<\/td><td><code>zenity --list --checklist --column=\"Choisir\" --column=\"Article\" FALSE Pomme TRUE Banane<\/code><\/td><td>Retourne \u00e9l\u00e9ments coch\u00e9s<\/td><\/tr><tr><td>Multi-colonnes<\/td><td><code>zenity --list --column=\"Nom\" --column=\"Couleur\" \"Pomme\" \"Rouge\" \"Banane\" \"Jaune\"<\/code><\/td><td>Plusieurs colonnes<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\ud83d\udca1 Astuce : ajouter <code>--width=400 --height=250<\/code> pour agrandir la fen\u00eatre.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-progression-et-notifications\">5\ufe0f\u20e3 Progression et notifications<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Type<\/th><th>Commande<\/th><th>Notes<\/th><\/tr><\/thead><tbody><tr><td>Barre de progression<\/td><td>`(&#8230;)<\/td><td>zenity &#8211;progress &#8211;title=\u00a0\u00bbChargement\u00a0\u00bb &#8211;percentage=0 &#8211;auto-close`<\/td><\/tr><tr><td>Notification<\/td><td><code>zenity --notification --text=\"Termin\u00e9 !\"<\/code><\/td><td>Petit pop-up syst\u00e8me<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-options-utiles\">6\ufe0f\u20e3 Options utiles<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Option<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code>--title=\"Titre\"<\/code><\/td><td>Titre de la fen\u00eatre<\/td><\/tr><tr><td><code>--text=\"Texte\"<\/code><\/td><td>Texte affich\u00e9 dans la fen\u00eatre<\/td><\/tr><tr><td><code>--width=N<\/code><\/td><td>Largeur en pixels<\/td><\/tr><tr><td><code>--height=N<\/code><\/td><td>Hauteur en pixels<\/td><\/tr><tr><td><code>--auto-close<\/code><\/td><td>Ferme automatiquement barre de progression \u00e0 100%<\/td><\/tr><tr><td><code>--column=\"Nom\"<\/code><\/td><td>D\u00e9finir une colonne pour les listes<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p class=\"wp-block-paragraph\">\ud83d\udca1 <strong>Conseils pratiques<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Toujours mettre des guillemets autour des textes.<\/li>\n\n\n\n<li>Capturer la sortie de Zenity avec <code>variable=$(zenity ...)<\/code>.<\/li>\n\n\n\n<li>Utiliser <code>--width<\/code> et <code>--height<\/code> pour \u00e9viter de redimensionner manuellement.<\/li>\n\n\n\n<li>Tester directement dans le terminal avant de l\u2019int\u00e9grer \u00e0 un script.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"code-de-test\">code de test <\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">#!\/bin\/bash\n# atelier_zenity_modifie.sh\n# Mini-atelier interactif Zenity avec fen\u00eatres dimensionn\u00e9es\n\nwhile true; do\n    action=$(zenity --list \\\n        --title=\"Atelier Zenity\" \\\n        --column=\"Choix\" \\\n        \"Message info\" \\\n        \"Message avertissement\" \\\n        \"Message erreur\" \\\n        \"Question Oui\/Non\" \\\n        \"Entr\u00e9e de texte\" \\\n        \"S\u00e9lection fichier\" \\\n        \"S\u00e9lection dossier\" \\\n        \"Liste simple\" \\\n        \"Liste \u00e0 cocher\" \\\n        \"Barre de progression\" \\\n        \"S\u00e9lecteur de date\" \\\n        \"Notification\" \\\n        \"Quitter\" \\\n        --width=350 --height=400)\n\n    [ -z \"$action\" ] &amp;&amp; exit 0  # Si annulation ou fermeture\n\n    case \"$action\" in\n        \"Message info\")\n            zenity --info --text=\"Bonjour le monde !\" --width=300 --height=100\n            ;;\n        \"Message avertissement\")\n            zenity --warning --text=\"Ceci est un avertissement.\" --width=300 --height=100\n            ;;\n        \"Message erreur\")\n            zenity --error --text=\"Une erreur est survenue !\" --width=300 --height=100\n            ;;\n        \"Question Oui\/Non\")\n            if zenity --question --text=\"Voulez-vous continuer ?\" --width=300 --height=100; then\n                zenity --info --text=\"Vous avez choisi Oui.\" --width=300 --height=100\n            else\n                zenity --info --text=\"Vous avez choisi Non.\" --width=300 --height=100\n            fi\n            ;;\n        \"Entr\u00e9e de texte\")\n            nom=$(zenity --entry --text=\"Quel est votre nom ?\" --width=300 --height=100)\n            [ -n \"$nom\" ] &amp;&amp; zenity --info --text=\"Bonjour, $nom !\" --width=300 --height=100\n            ;;\n        \"S\u00e9lection fichier\")\n            fichier=$(zenity --file-selection --title=\"Choisir un fichier\" --width=400 --height=300)\n            [ -n \"$fichier\" ] &amp;&amp; zenity --info --text=\"Fichier choisi : $fichier\" --width=300 --height=100\n            ;;\n        \"S\u00e9lection dossier\")\n            dossier=$(zenity --file-selection --directory --title=\"Choisir un dossier\" --width=400 --height=300)\n            [ -n \"$dossier\" ] &amp;&amp; zenity --info --text=\"Dossier choisi : $dossier\" --width=300 --height=100\n            ;;\n        \"Liste simple\")\n            choix=$(zenity --list --title=\"Choisir un fruit\" \\\n                --column=\"Fruits\" \"Pomme\" \"Banane\" \"Cerise\" \"Orange\" \"Mangue\" \\\n                --width=400 --height=250)\n            [ -n \"$choix\" ] &amp;&amp; zenity --info --text=\"Vous avez choisi : $choix\" --width=300 --height=100\n            ;;\n        \"Liste \u00e0 cocher\")\n            choix=$(zenity --list --checklist --title=\"Courses\" \\\n                --column=\"Choisir\" --column=\"Article\" \\\n                FALSE Pomme TRUE Banane FALSE Cerise TRUE Orange \\\n                --width=450 --height=300)\n            [ -n \"$choix\" ] &amp;&amp; zenity --info --text=\"Vous avez choisi : $choix\" --width=350 --height=150\n            ;;\n        \"Barre de progression\")\n            (\n            for i in {1..100}; do\n                echo $i\n                sleep 0.03\n            done\n            ) | zenity --progress --title=\"Chargement\" --percentage=0 --auto-close --width=400 --height=100\n            ;;\n        \"S\u00e9lecteur de date\")\n            date=$(zenity --calendar --title=\"Choisir une date\" --width=350 --height=250)\n            [ -n \"$date\" ] &amp;&amp; zenity --info --text=\"Date choisie : $date\" --width=300 --height=100\n            ;;\n        \"Notification\")\n            zenity --notification --text=\"Processus termin\u00e9 !\" --width=300 --height=100\n            ;;\n        \"Quitter\")\n            exit 0\n            ;;\n    esac\ndone\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Zenity Cheat Sheet installation Syntaxe g\u00e9n\u00e9rale : 1\ufe0f\u20e3 Messages et dialogues simples Type Commande Notes Info zenity &#8211;info &#8211;text=\u00a0\u00bbMessage\u00a0\u00bb Bo\u00eete d\u2019info avec OK Avertissement zenity &#8211;warning &#8211;text=\u00a0\u00bbAttention\u00a0\u00bb Bo\u00eete jaune Erreur [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-3747","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Zenity - workboot<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/workboot.fr\/ciela\/zenity\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Zenity - workboot\" \/>\n<meta property=\"og:description\" content=\"Zenity Cheat Sheet installation Syntaxe g\u00e9n\u00e9rale : 1\ufe0f\u20e3 Messages et dialogues simples Type Commande Notes Info zenity --info --text=&quot;Message&quot; Bo\u00eete d\u2019info avec OK Avertissement zenity --warning --text=&quot;Attention&quot; Bo\u00eete jaune Erreur [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/workboot.fr\/ciela\/zenity\/\" \/>\n<meta property=\"og:site_name\" content=\"workboot\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-14T14:18:33+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/zenity\\\/\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/zenity\\\/\",\"name\":\"Zenity - workboot\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#website\"},\"datePublished\":\"2025-08-14T14:12:07+00:00\",\"dateModified\":\"2025-08-14T14:18:33+00:00\",\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/workboot.fr\\\/ciela\\\/zenity\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#website\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/\",\"name\":\"workboot\",\"description\":\"Open Source, Open Minds \",\"publisher\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#organization\",\"name\":\"workboot\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo_ciel-dorian-1.png\",\"contentUrl\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/logo_ciel-dorian-1.png\",\"width\":1024,\"height\":950,\"caption\":\"workboot\"},\"image\":{\"@id\":\"https:\\\/\\\/workboot.fr\\\/ciela\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Zenity - workboot","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/workboot.fr\/ciela\/zenity\/","og_locale":"fr_FR","og_type":"article","og_title":"Zenity - workboot","og_description":"Zenity Cheat Sheet installation Syntaxe g\u00e9n\u00e9rale : 1\ufe0f\u20e3 Messages et dialogues simples Type Commande Notes Info zenity --info --text=\"Message\" Bo\u00eete d\u2019info avec OK Avertissement zenity --warning --text=\"Attention\" Bo\u00eete jaune Erreur [&hellip;]","og_url":"https:\/\/workboot.fr\/ciela\/zenity\/","og_site_name":"workboot","article_modified_time":"2025-08-14T14:18:33+00:00","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/workboot.fr\/ciela\/zenity\/","url":"https:\/\/workboot.fr\/ciela\/zenity\/","name":"Zenity - workboot","isPartOf":{"@id":"https:\/\/workboot.fr\/ciela\/#website"},"datePublished":"2025-08-14T14:12:07+00:00","dateModified":"2025-08-14T14:18:33+00:00","inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/workboot.fr\/ciela\/zenity\/"]}]},{"@type":"WebSite","@id":"https:\/\/workboot.fr\/ciela\/#website","url":"https:\/\/workboot.fr\/ciela\/","name":"workboot","description":"Open Source, Open Minds ","publisher":{"@id":"https:\/\/workboot.fr\/ciela\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/workboot.fr\/ciela\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/workboot.fr\/ciela\/#organization","name":"workboot","url":"https:\/\/workboot.fr\/ciela\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/workboot.fr\/ciela\/#\/schema\/logo\/image\/","url":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/05\/logo_ciel-dorian-1.png","contentUrl":"https:\/\/workboot.fr\/ciela\/wp-content\/uploads\/2025\/05\/logo_ciel-dorian-1.png","width":1024,"height":950,"caption":"workboot"},"image":{"@id":"https:\/\/workboot.fr\/ciela\/#\/schema\/logo\/image\/"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"admin","author_link":"https:\/\/workboot.fr\/ciela\/author\/admin\/"},"uagb_comment_info":0,"uagb_excerpt":"Zenity Cheat Sheet installation Syntaxe g\u00e9n\u00e9rale : 1\ufe0f\u20e3 Messages et dialogues simples Type Commande Notes Info zenity --info --text=\"Message\" Bo\u00eete d\u2019info avec OK Avertissement zenity --warning --text=\"Attention\" Bo\u00eete jaune Erreur [&hellip;]","_links":{"self":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/3747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/comments?post=3747"}],"version-history":[{"count":4,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/3747\/revisions"}],"predecessor-version":[{"id":3755,"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/pages\/3747\/revisions\/3755"}],"wp:attachment":[{"href":"https:\/\/workboot.fr\/ciela\/wp-json\/wp\/v2\/media?parent=3747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}