From 0adb3c67f6f56c7f89d5d5d8a672a0b25a09ab02 Mon Sep 17 00:00:00 2001 From: "gaknuyardi@f7280525ccd44eafd8d1485ec087f27532efd2e9" Date: Wed, 22 Mar 2023 19:26:56 +0000 Subject: [PATCH 1/3] Added a comment: Understanding encrypted special remote folder structure --- ...1_1a8a217dc31b0a36dfa9975f72d40b3a._comment | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 doc/special_remotes/comment_51_1a8a217dc31b0a36dfa9975f72d40b3a._comment diff --git a/doc/special_remotes/comment_51_1a8a217dc31b0a36dfa9975f72d40b3a._comment b/doc/special_remotes/comment_51_1a8a217dc31b0a36dfa9975f72d40b3a._comment new file mode 100644 index 0000000000..59bb3cf8d3 --- /dev/null +++ b/doc/special_remotes/comment_51_1a8a217dc31b0a36dfa9975f72d40b3a._comment @@ -0,0 +1,18 @@ +[[!comment format=mdwn + username="gaknuyardi@f7280525ccd44eafd8d1485ec087f27532efd2e9" + nickname="gaknuyardi" + avatar="http://cdn.libravatar.org/avatar/2cfaf95a0836c7a00ef3efb16c3315ae" + subject="Understanding encrypted special remote folder structure" + date="2023-03-22T19:26:55Z" + content=""" +@joey While inspecting my special remote (rsync, encryption=hybrid) I noticed that a couple files ended up in the same folder tree, is that normal or is something wrong? Obfuscated tree output below. + +``` +├── [ 0] xxx +│   └── [ 0] yyy +│   ├── [ 0] GPGHMACSHA512--1234 +│   │   └── [29M] GPGHMACSHA512--1234 +│   └── [ 0] GPGHMACSHA512--5678 +│   └── [ 2G] GPGHMACSHA512--5678 +``` +"""]] From 2a0a20990872c29679932ae4c65fa105ac4e1af2 Mon Sep 17 00:00:00 2001 From: john Date: Thu, 23 Mar 2023 11:37:53 +0000 Subject: [PATCH 2/3] Added a comment --- .../comment_3_d8a05e086ee41ef9bcc096d29ac8e8f8._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/bugs/One_Client_Not_Syncing_Content/comment_3_d8a05e086ee41ef9bcc096d29ac8e8f8._comment diff --git a/doc/bugs/One_Client_Not_Syncing_Content/comment_3_d8a05e086ee41ef9bcc096d29ac8e8f8._comment b/doc/bugs/One_Client_Not_Syncing_Content/comment_3_d8a05e086ee41ef9bcc096d29ac8e8f8._comment new file mode 100644 index 0000000000..0f006d0c3d --- /dev/null +++ b/doc/bugs/One_Client_Not_Syncing_Content/comment_3_d8a05e086ee41ef9bcc096d29ac8e8f8._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="john" + avatar="http://cdn.libravatar.org/avatar/dae0abf1394490f543ce2b67b395ea28" + subject="comment 3" + date="2023-03-23T11:37:52Z" + content=""" +One of the best game word scramble which helps in mind. +"""]] From 328e9672db44cab8c19439365783497024f78d9c Mon Sep 17 00:00:00 2001 From: Xyem Date: Thu, 23 Mar 2023 17:05:24 +0000 Subject: [PATCH 3/3] Added a comment --- ..._b222634d9f97e2ef604b476df357d54b._comment | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment diff --git a/doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment b/doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment new file mode 100644 index 0000000000..4eb0f26f99 --- /dev/null +++ b/doc/todo/Configuring_metadata_view_filenames/comment_5_b222634d9f97e2ef604b476df357d54b._comment @@ -0,0 +1,26 @@ +[[!comment format=mdwn + username="Xyem" + avatar="http://cdn.libravatar.org/avatar/dea2d98057721c21166c3721f6d55c06" + subject="comment 5" + date="2023-03-23T17:05:24Z" + content=""" +Has the format been changed since this previously asked? I am currently trying to leverage git-annex and its metadata views with AI tooling, but the format seems to be filename_%path%, resulting in the extension being in the middle of the path. I have set `annex.maxextensionlength` to `12` so the extensions are present on the files in the backend. + + $ git annex view type=model model/=* + $ ls -lr + .: + sd + + ./sd: + v1.4.safetensors_%model%sd% v1.5.safetensors_%model%sd% + +whereas I would expect (or rather, I am trying to achieve): + + $ ls -lr + .: + sd + + ./sd: + v1.4.safetensors v1.5.safetensors + +"""]]