From 71e4e30ab9d419f76b1beb06b0fb43160c7e4d19 Mon Sep 17 00:00:00 2001 From: guilhem Date: Fri, 8 Mar 2013 16:06:05 +0000 Subject: [PATCH] --- ...iles_containing_ISO8859-15_characters.mdwn | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 doc/bugs/git-annex_doesn__39__t_list_files_containing_ISO8859-15_characters.mdwn diff --git a/doc/bugs/git-annex_doesn__39__t_list_files_containing_ISO8859-15_characters.mdwn b/doc/bugs/git-annex_doesn__39__t_list_files_containing_ISO8859-15_characters.mdwn new file mode 100644 index 0000000000..4ec042840d --- /dev/null +++ b/doc/bugs/git-annex_doesn__39__t_list_files_containing_ISO8859-15_characters.mdwn @@ -0,0 +1,35 @@ +

What steps will reproduce the problem?

+
    git init /tmp/test
+    cd /tmp/test
+    git annex init
+    touch òó ō
+    git annex add òó ō
+    git annex find --include='*'
+
+ +

What is the expected output? What do you see instead?

+Only ō is listed. Files containing ISO8859-15 characters that are not in ASCII-7, such as òó, are not listed by +git annex find --include='*'. On the other hand, git annex find --in=here lists both. + +

What version of git-annex are you using? On what operating system?

+git-annex 4.20130227, on Debian GNU/Linux (sid, i386). + +

Please provide any additional information below.

+
    ~$ locale
+    LANG=en_US.UTF-8
+    LANGUAGE=en
+    LC_CTYPE="en_US.UTF-8"
+    LC_NUMERIC=C
+    LC_TIME=en_DK.UTF-8
+    LC_COLLATE="en_US.UTF-8"
+    LC_MONETARY="en_US.UTF-8"
+    LC_MESSAGES="en_US.UTF-8"
+    LC_PAPER=sv_SE.UTF-8
+    LC_NAME=sv_SE.UTF-8
+    LC_ADDRESS=sv_SE.UTF-8
+    LC_TELEPHONE=sv_SE.UTF-8
+    LC_MEASUREMENT=sv_SE.UTF-8
+    LC_IDENTIFICATION="en_US.UTF-8"
+    LC_ALL=
+
+