summaryrefslogtreecommitdiff
path: root/doc/bugs/slash_in_metadata_breaks_field__61____42___view
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/bugs/slash_in_metadata_breaks_field__61____42___view
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/bugs/slash_in_metadata_breaks_field__61____42___view')
-rw-r--r--doc/bugs/slash_in_metadata_breaks_field__61____42___view/comment_1_249d786ce15ab0c91191987c0bab76ef._comment27
1 files changed, 0 insertions, 27 deletions
diff --git a/doc/bugs/slash_in_metadata_breaks_field__61____42___view/comment_1_249d786ce15ab0c91191987c0bab76ef._comment b/doc/bugs/slash_in_metadata_breaks_field__61____42___view/comment_1_249d786ce15ab0c91191987c0bab76ef._comment
deleted file mode 100644
index f6fb82b51..000000000
--- a/doc/bugs/slash_in_metadata_breaks_field__61____42___view/comment_1_249d786ce15ab0c91191987c0bab76ef._comment
+++ /dev/null
@@ -1,27 +0,0 @@
-[[!comment format=mdwn
- username="joey"
- subject="""comment 1"""
- date="2016-01-08T15:52:22Z"
- content="""
-I was able to reproduce this problem, but only with LANG=C. It works in a
-unicode locale.
-
-What's torpedoing this is a hack that it uses to handle "/" in a view.
-
- pseudoSlash :: Char
- pseudoSlash = '\8725' -- '∕' /= '/'
-
-It's necessary that in a view, each viewed metadata component yield exactly one
-level of directory hierarchy. Otherwise, it would be impossible to reverse
-"a/b/c/file" when viewing on 2 metadata components --
-is that "a/b" and "c" or "a" and "b/c"?
-
-Which is why I used this cutsey hack, but yeah, it requires working
-unicode support.
-
-Sigh, 2016 and still can't have nice things.. Suppose it'll have to use an
-ugly encoding for them instead.
-
-Update: Can have nice things, just have to encode the characters using the
-FileSystemEncoding!
-"""]]