{"id":38215,"date":"2019-10-31T22:22:20","date_gmt":"2019-10-31T19:22:20","guid":{"rendered":"https:\/\/prohoster.info\/blog\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov\/"},"modified":"2019-10-31T22:22:20","modified_gmt":"2019-10-31T19:22:20","slug":"kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov","status":"publish","type":"post","link":"https:\/\/prohoster.info\/et\/blog\/administrirovanie\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov","title":{"rendered":"Kategooriad kaustade asemel. T\u00f6\u00f6riist mugavaks failide s\u00e4ilitamiseks","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Inspiratsiooniks <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/457328\/\">artikkel<\/a><\/noindex> <\/p>\n<p><\/p>\n<blockquote><p>\u00abKategooriad ja mitte kaustad, v\u00f5i Semantilise failis\u00fcsteemi jaoks Linuxis Vitis\u00bb<\/p><\/blockquote>\n<p>otsustasin teha oma analooge utiliidile <code>vitis<\/code> PowerShell Core'ile.<\/p>\n<p><noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><\/p>\n<h2 id=\"zachem-ya-nachal-eto-delat\">Miks ma seda tegema hakkasin<\/h2>\n<p><\/p>\n<p>Esiteks, <code>vitis<\/code> ainult Linuxile.<br \/>\nTeiseks, tahaksin kasutada \u00abtorusid\u00bb PowerShellis.<\/p>\n<p><\/p>\n<p>Kuna soovisin luua mitme platvormiga utiliidi, valisin .Net Core'i.<\/p>\n<p><\/p>\n<h2 id=\"predystoriya\">Eelalugu<\/h2>\n<p><\/p>\n<p>Alguses oli segadus. Siis ilmusid kettale kaustad.<br \/>\nKuid segadus valitses endiselt. Ja ilmusid sildid, samuti alam-sildid ja sildide s\u00fcnon\u00fc\u00fcmid. Aga segadus haaras neidki. Ja v\u00e4lja m\u00f5eldi kategooriad.<\/p>\n<p><\/p>\n<h2 id=\"koncepciya\">Kontseptsioon<\/h2>\n<p><\/p>\n<p>Failid ei asu kaustade hierarhias, vaid \u00ab hunnikus \u00bb, teatud kategooriatega. \u00dcks fail v\u00f5ib kuuluda mitmesse kategooriasse.<\/p>\n<p><\/p>\n<p>Kui fail tuleb leida, on mugavam sisestada kategooriaid, millele see kuulub. See on palju lihtsam meeles pidada kui see, millistes kaustades see asub.<\/p>\n<p><\/p>\n<p>Kuid selline failis\u00fcsteem ei sobi mingil juhul koodi, allikate jms s\u00e4ilitamiseks.<br \/>\nSee on m\u00f5eldud n\u00e4iteks perede fotode, muusika, dokumentide hoidmiseks.<\/p>\n<p><\/p>\n<h2 id=\"ispolzovanie\">Kasutamine<\/h2>\n<p><\/p>\n<p>Noh, alustame demonstreerimist.<\/p>\n<p><\/p>\n<p>Installime Graphile:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\"># install.ps1 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f \u0432 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441 \u043a\u043e\u0434\u043e\u043c\nPS D:SourcereposGraphile&gt; .install.ps1<\/code><\/pre>\n<p><\/p>\n<p>Esiteks seadistame Graphile kaustas:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\"># \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u043c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0439 \u043c\u043e\u0434\u0443\u043b\u044c\nPS C:UsersDellGraphileTest&gt; Import-Module GraphilePowerShell\n# \u0418\u043d\u0438\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u043c Graphile \u0432 \u043f\u0430\u043f\u043a\u0435\nPS C:UsersDellGraphileTest&gt; Init-Graphile\nC:UsersDellGraphileTestgraphile.db<\/code><\/pre>\n<p><\/p>\n<p>Nii oleme k\u00f5ik seadistanud. N\u00fc\u00fcd saab luua uue kategooria:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">PS C:UsersDellGraphileTest&gt; New-Category -Name \"music\"\nmusic<\/code><\/pre>\n<p><\/p>\n<p>Lisame failid:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">PS C:UsersDellGraphileTest&gt; Get-ChildItem \"D:MusicPink Floyd - The Wall\" -Recurse -Filter \"*.mp3\" | foreach { $_.FullName } | foreach {\n&gt;&gt; Add-FileToCategory -File $_ -Categories \"music\"\n}<\/code><\/pre>\n<p><\/p>\n<p>Neile, kes ei saanud aru, mida ma tegin:<\/p>\n<p><\/p>\n<ol>\n<li>Sai nimekiri failidest kaustas <code>Pink Floyd - The Wall<\/code><\/li>\n<li>Iga faili muundasin t\u00e4ielikuks teeks<\/li>\n<li>Lisasin iga faili kategooriasse <code>music<\/code><\/li>\n<\/ol>\n<p><\/p>\n<p>N\u00fc\u00fcd kontrollime, kas t\u00f5esti lisasime failid kategooriasse:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">PS C:UsersDellGraphileTest&gt; List-Graphiles | Format-Table<\/code><\/pre>\n<p><\/p>\n<p>V\u00e4ljastatakse nimekiri vormingus:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">CategoriesNames Id Categories Name Extension<\/code><\/pre>\n<p><\/p>\n<p>Lisame veel kategooriaid ja faile:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">New-Category -Name \"the-wall\"\nNew-Category -Name \"alan-parsons\"\n\nList-Graphiles -Categories \"music\" | foreach { Add-GraphileToCategory -Categories \"the-wall\" -Files $_.Name }\n\nGet-ChildItem \"D:MusicThe Alan Parsons Project - Turn of a Friendly Card\" -File -Recurse | foreach { $_.FullName } | foreach { Add-FileToCategory -File $_ -Categories \"music\", \"alan-parsons\" }<\/code><\/pre>\n<p><\/p>\n<p>Kontrollime faile:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">List-Graphiles -Categories \"alan-parsons\" | Format-Table<\/code><\/pre>\n<p><\/p>\n<p>K\u00e4sk v\u00e4ljastab k\u00f5ik failid, mis kuuluvad kategooriasse <code>alan-parsons<\/code>.<\/p>\n<p><\/p>\n<p>Rohkem faile failis\u00fcsteemide jumalale!<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">New-Category -Name \"images\"\nGet-ChildItem \"D:Pildid\" -File -Recurse | foreach { $.FullName } | foreach {\n    Add-FileToCategory -File $_ -Categories \"images\"\n}<\/code><\/pre>\n<p><\/p>\n<p>Kontrollin:<\/p>\n<p><\/p>\n<pre><code class=\"plaintext\">List-Graphiles -Categories \"images\" | Format-Table<\/code><\/pre>\n<p><\/p>\n<p>K\u00f5ik t\u00f6\u00f6tab!<\/p>\n<p><\/p>\n<p>Aga see on alles algus. Ekspordi oma tavaline failis\u00fcsteem Graphile ja naudi suurep\u00e4rast failihaldust.<\/p>\n<p><\/p>\n<h2 id=\"otkuda-skachat-graphile\">Kust saab Graphile alla laadida<\/h2>\n<p><\/p>\n<p>Siin on <noindex><a rel=\"nofollow\" href=\"https:\/\/gitlab.com\/georgeBartolomey\/graphile\">link<\/a><\/noindex> GitLab Graphile.<\/p>\n<p><\/p>\n<p>Litsents <code>MIT<\/code>, seega v\u00f5id seda kasutada ka \u00e4rilistel eesm\u00e4rkidel.<\/p>\n<p><\/p>\n<h2 id=\"buduschee-proekta\">Projekti tulevik<\/h2>\n<p><\/p>\n<p>Kuna see on PowerShell, mitte lihtsalt nipet-n\u00e4pet, on v\u00f5imalik luua graafiline liides .NET Core jaoks.<\/p>\n<p><\/p>\n<p>Kuidas seda teha:<\/p>\n<p><\/p>\n<ol>\n<li>Installi Microsoft.PowerShell.SDK pakett<\/li>\n<li>Kasutage PowerShelli klassi ja kutsuge v\u00e4lja Graphile.<\/li>\n<\/ol>\n<p><\/p>\n<p>Kui projekt meeldis, tehke commit'e, <code>merge request<\/code>ja looge arutelusid.<\/p>\n<p><\/p>\n<p>Ait\u00e4h, et lugesite! Kasutage ja nautige!<\/p>\n<p>Allikas: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/467701\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u0412\u0434\u043e\u0445\u043d\u043e\u0432\u0438\u0432\u0448\u0438\u0441\u044c \u0441\u0442\u0430\u0442\u044c\u0435\u0439 &#171;\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439, \u0438\u043b\u0438 \u0421\u0435\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0434\u043b\u044f Linux Vitis&#187;, \u044f \u0440\u0435\u0448\u0438\u043b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u0432\u043e\u0439 \u0430\u043d\u0430\u043b\u043e\u0433 \u0443\u0442\u0438\u043b\u0438\u0442\u044b vitis \u0434\u043b\u044f PowerShell Core. \u0417\u0430\u0447\u0435\u043c \u044f \u043d\u0430\u0447\u0430\u043b \u044d\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0412\u043e \u043f\u0435\u0440\u0432\u044b\u0445, vitis \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f Linux. \u0412\u043e \u0432\u0442\u043e\u0440\u044b\u0445, \u0445\u043e\u0447\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f &#171;\u0442\u0440\u0443\u0431\u0430\u043c\u0438&#187; \u0432 PowerShell. \u0422\u0430\u043a \u043a\u0430\u043a \u044f \u0437\u0430\u0445\u043e\u0442\u0435\u043b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043a\u0440\u043e\u0441\u0441\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0435\u043d\u043d\u0443\u044e \u0443\u0442\u0438\u043b\u0438\u0442\u0443, \u044f \u0432\u044b\u0431\u0440\u0430\u043b .Net Core. \u041f\u0440\u0435\u0434\u044b\u0441\u0442\u043e\u0440\u0438\u044f \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0431\u044b\u043b \u0445\u0430\u043e\u0441. [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[688],"tags":[],"class_list":["post-38215","post","type-post","status-publish","format-standard","hentry","category-administrirovanie"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u0412\u0434\u043e\u0445\u043d\u043e\u0432\u0438\u0432\u0448\u0438\u0441\u044c \u0441\u0442\u0430\u0442\u044c\u0435\u0439 &quot;\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439, \u0438\u043b\u0438 \u0421\u0435\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0434\u043b\u044f Linux.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/et\/blog\/administrirovanie\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"et_EE\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439. \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u043e\u0432 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u0412\u0434\u043e\u0445\u043d\u043e\u0432\u0438\u0432\u0448\u0438\u0441\u044c \u0441\u0442\u0430\u0442\u044c\u0435\u0439 &quot;\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439, \u0438\u043b\u0438 \u0421\u0435\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0434\u043b\u044f Linux.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/et\/blog\/administrirovanie\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T19:22:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T19:22:20+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Kategooriad asemel kaustad. Mugava failihalduse t\u00f6\u00f6riist | ProHoster","description":"Inspireerituna artiklist \"Kategooriad asemel kaustad, v\u00f5i Semantiline failis\u00fcsteem Linuxile.\"","canonical_url":"https:\/\/prohoster.info\/et\/blog\/administrirovanie\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"et_EE","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439. \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u043e\u0432 | ProHoster","og:description":"\u0412\u0434\u043e\u0445\u043d\u043e\u0432\u0438\u0432\u0448\u0438\u0441\u044c \u0441\u0442\u0430\u0442\u044c\u0435\u0439 &quot;\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438 \u0432\u043c\u0435\u0441\u0442\u043e \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0439, \u0438\u043b\u0438 \u0421\u0435\u043c\u0430\u043d\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0444\u0430\u0439\u043b\u043e\u0432\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0434\u043b\u044f Linux.","og:url":"https:\/\/prohoster.info\/et\/blog\/administrirovanie\/kategorii-vmesto-direktorij-instrument-dlya-udobnogo-hraneniya-fajlov","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T19:22:20+00:00","article:modified_time":"2019-10-31T19:22:20+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"38215","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-23 20:58:21","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 01:13:22","updated":"2026-01-23 20:58:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/posts\/38215","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/comments?post=38215"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/posts\/38215\/revisions"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/media?parent=38215"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/categories?post=38215"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/et\/wp-json\/wp\/v2\/tags?post=38215"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}